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年前753ビュー
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.

0
profile picture
エキスパート
回答済み 4ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ