.htaccess 重定向循环!根目录下的所有子目录
我正在尝试通过 .htaccess 将所有子目录重定向到我网站的根目录! 如果我尝试访问子目录,下面的代码可以正常工作...但不允许我在根目录中显示索引页面,因为会启动重定向循环!
RedirectMatch temp ^/.*$ http://localhost/
我该如何解决这个问题?
I'm trying to redirect all subdirectories to the root of my website via .htaccess!
The code below works fine if I try to access a subdirectory ... but doesn't let me display the index page in the root because starts a loop of redirects!
RedirectMatch temp ^/.*$ http://localhost/
How can I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望所有子目录重定向到主页,您可以执行如下操作:
这将匹配任何包含两个斜杠的 URI,且斜杠之间至少有一个字符。
If you want all subdirectores to redirect to the home page, you would do something like this:
This will match any URI with two slashes in it, with at least one character between them.