htaccess 破坏索引

发布于 2024-11-06 12:06:29 字数 357 浏览 0 评论 0原文

这很完美: ^(.*)$ (让 site.com/login.phpsite.com/login 一样工作),除了它破坏所有索引。我无法显示任何索引文件,即使是由同一 .htaccess 文件设置的索引也是如此。它只会显示一个空白页面,直到我删除此 ^(.*)$。有什么想法吗?

相关问题:文件名中包含两个句点的 htaccess 正则表达式

This works perfect: ^(.*)$ (lets site.com/login.php work like site.com/login) except it breaks all indexes. I can't get any index file to show up, even index set by the same .htaccess file. It just shows a blank page until I remove this ^(.*)$. Any thoughts?

Rrelated question: htaccess regex with two periods in file name

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

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

发布评论

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

评论(1

朕就是辣么酷 2024-11-13 12:06:29

^(.*)$ 匹配任何内容,甚至什么都不匹配。强制要求至少需要一个字符。

^(.+)$

^(.*)$ matches anything, even nothing. Force it to require at least one character instead.

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