.htaccess 重定向循环!根目录下的所有子目录

发布于 2024-08-08 12:22:20 字数 186 浏览 3 评论 0原文

我正在尝试通过 .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 技术交流群。

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

发布评论

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

评论(1

勿挽旧人 2024-08-15 12:22:20

如果您希望所有子目录重定向到主页,您可以执行如下操作:

RedirectMatch temp ^/.+/.*$ http://localhost/

这将匹配任何包含两个斜杠的 URI,且斜杠之间至少有一个字符。

If you want all subdirectores to redirect to the home page, you would do something like this:

RedirectMatch temp ^/.+/.*$ http://localhost/

This will match any URI with two slashes in it, with at least one character between them.

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