为什么我会遇到重定向循环?
我有一个网站,例如(http://example.com)。我希望对 / ie http://example.com 的任何请求都重定向到 http://example.com/stuff。我添加了一个 .htaccess 文件,其中包含以下行:
redirect 301 / http://example.com/stuff
有什么建议吗?
I have a website with a for example (http://example.com). I want any requests for / i.e. http://example.com to be redirected to http://example.com/stuff. I added a .htaccess file with the following line:
redirect 301 / http://example.com/stuff
Any suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅重定向指令的文档:
使用
RedirectMatch
代替:See the Redirect directive's documentation:
Use a
RedirectMatch
instead:重定向会定向以给定模式开头的任何内容。
使用:
这需要一个正则表达式,因此您可以使其更具体。
Redirect directs anything that starts with the pattern given.
Use:
This takes a regular expression, so you can make it more specific.