将路径 url 重定向到其基本 url
我需要将一些URL重定向到其原始的基本URL,例如,如果我有以下URL https://example.com/path/path/to/something/something 应该将其重定向到下面 https://example.com 我可以在NGINX级别或CloudFront级别上实现这一点吗? 我尝试了以下 重写 ^(/path/to/to/tose)(。*)$ 永久; 但没有工作
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要在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