nginx - 无法确定 / 仅的位置
仅当我输入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有没有尝试过:
Have you tried: