nginx - 无法确定 / 仅的位置

发布于 2024-10-20 00:10:53 字数 345 浏览 2 评论 0原文

仅当我输入 www.example.com 或 www.example.com/ 时,我很难如何进行一些重定向和其他操作,但我做不到。 location / {} 接受所有情况,所以我尝试了:

location ~ ^/?$ {}

location ~ ^/$ {}

以及许多其他方法,但没有一个适用于 www.example.com 或 www.example.com/。

请帮助...我需要匹配仅当您输入 www.example.com 或 www.example.com/ 时的确切位置。

谢谢!

I struggled a lot how to do some redirects and stuff ONLY when I enter www.example.com OR www.example.com/ but I couldn't.
location / {} takes all cases so I tried:

location ~ ^/?$ {}

or

location ~ ^/$ {}

and many others but none worked for www.example.com or www.example.com/.

Please help... I need to match that exact location which is only when you enter www.example.com or www.example.com/.

Thanks!

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

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

发布评论

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

评论(1

撩动你心 2024-10-27 00:10:53

你有没有尝试过:

location = / {}

Have you tried:

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