Redirect Domain To LinkedIn Profile Page

0

Looking to redirect my aws hosted domain to my LinkedIn profile page.

I have tried this: Is there a way to redirect an apex domain to another domain using Amazon S3 and Amazon Route 53? (https://aws.amazon.com/premiumsupport/knowledge-center/redirect-domain-route-53/)

thatguy
已提问 2 年前721 查看次数
3 回答
1

One additional option is to use a CloudFront function to do the redirect. It is pretty straightforward. Here is an example of how to accomplish this using a CloudFront function.

https://docs.amazonaws.cn/en_us/AmazonCloudFront/latest/DeveloperGuide/functions-tutorial.html

In the example above, replace the location response header (line 9) with the URL to your LinkedIn profile.

I should add, this option does not require any Route53 magic. Just create your Route53 CNAME record to point your personal domain to the CloudFront domain name, and then follow the steps in the tutorial I linked above.

profile pictureAWS
已回答 2 年前
profile picture
专家
已审核 3 个月前
0

The methods you mentioned are all using CNAME. It is used when you own both domain names. But I guess you are not the owner of linkedin.com. So they won't work for you.

Instead, you can use client script redirect or HTTP redirect.


Client script redirect:

You can host your website on S3 (https://docs.aws.amazon.com/AmazonS3/latest/userguide/WebsiteHosting.html)

Configure route53 to route your domain name to the S3 bucket (https://docs.aws.amazon.com/AmazonS3/latest/userguide/website-hosting-custom-domain-walkthrough.html)

And then in your website, use javascript to redirect user to the URL you want (https://www.w3schools.com/howto/howto_js_redirect_webpage.asp)

This is the cheapest way.


If you don't want to use javascript, using HTTP redirect also works, you can use ALB to achieve that (https://aws.amazon.com/premiumsupport/knowledge-center/route-53-redirect-to-another-domain/#Redirecting_domain_names_or_redirecting_from_HTTP_to_HTTPS_using_an_Application_Load_Balancer)

已回答 2 年前
  • They are able to redirect directly in S3 so they need only make an S3 bucket of the same name as their domain and configure it to redirect to their LinkedIn page. The next step is to hook up their bucket with an A (Alias) as an apex record in Route 53.

  • Thanks Richard. While non of those methods call out cname specifically, you are correct that linkedin is not mine. This seems to be why I can't name the bucket linkedin.com. I'm beyond needing AWS for dummies and submitted this to a friend. I'll share your feedback and in the future, I'll advise anybody that isn't an expert or training to use a different registrar.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则