mod_rewrite - 如何避免无限循环
我希望我的网站上有一个漂亮的 URL,因此我已将这一行添加到 .htaccess 中,但它导致了无限循环。
RewriteRule ^(.*)$ http://www.mydomain.com/pages/$1%{QUERY_STRING}.php
它应该重写每个 URL 并添加“pages/”和“.php”扩展名,但只是第一次,而不是像某种递归函数。
I want to have a nice URLs on my website, so I have added this line into .htaccess, but it's causing infinite loop.
RewriteRule ^(.*)$ http://www.mydomain.com/pages/$1%{QUERY_STRING}.php
It should rewrite every URL and add "pages/" and ".php" extension but only FIRST TIME not like some kind of recursive function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要传递查询字符串,这会自动发生。
查看文档
除此之外,试试这个
you don't need to pass the query string, that happens automatically.
see the documentation
other than that, try this