htaccess 破坏索引
这很完美: ^(.*)$
(让 site.com/login.php
像 site.com/login
一样工作),除了它破坏所有索引。我无法显示任何索引文件,即使是由同一 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
^(.*)$
匹配任何内容,甚至什么都不匹配。强制要求至少需要一个字符。^(.*)$
matches anything, even nothing. Force it to require at least one character instead.