将路径 url 重定向到其基本 url

发布于 2025-01-19 14:03:06 字数 517 浏览 0 评论 0 原文

我需要将一些URL重定向到其原始的基本URL,例如,如果我有以下URL https://example.com/path/path/to/something/something 应该将其重定向到下面 https://example.com 我可以在NGINX级别或CloudFront级别上实现这一点吗? 我尝试了以下 重写 ^(/path/to/to/tose)(。*)$ 永久; 但没有工作

I need to redirect some urls to their original base url, for eg if if i have the below url
https://example.com/path/to/something
it should be redirected to the below
https://example.com
Any way i can acheive this on nginx level or cloudfront level?
I tried the below
rewrite ^(/path/to/something)(.*)$ https://example.com/$2 permanent;
but did not work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自此以后,行同陌路 2025-01-26 14:03:06

如果要在CloudFront中执行此操作,则可以使用CloudFront函数(在边缘执行的轻巧JavaScript函数)。以下是根据国家 /地区进行重定向的示例 - 您可以根据自己的需求进行修改:

If you want to do this in CloudFront, you can use CloudFront Functions (lightweight JavaScript functions that execute at the edge). Here is an example of doing redirects based on country - you can modify based on your needs:
https://github.com/aws-samples/amazon-cloudfront-functions/tree/main/redirect-based-on-country

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文