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 年前檢視次數 749 次
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
專家
已審閱 4 個月前
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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南