mod_rewrite - 如何避免无限循环

发布于 2024-11-29 03:14:11 字数 218 浏览 1 评论 0原文

我希望我的网站上有一个漂亮的 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 技术交流群。

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

发布评论

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

评论(1

瞎闹 2024-12-06 03:14:11

您不需要传递查询字符串,这会自动发生。

查看文档

除此之外,试试这个

RewriteCond %{REQUEST_URI}  !^/pages/$
RewriteRule ^(/.*)? http://www.mydomain.com/pages/$1 [L]

you don't need to pass the query string, that happens automatically.

see the documentation

other than that, try this

RewriteCond %{REQUEST_URI}  !^/pages/$
RewriteRule ^(/.*)? http://www.mydomain.com/pages/$1 [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文