【发布时间】:2010-10-27 08:31:45
【问题描述】:
我需要一个 htaccess 301 重定向来处理来自这个 url 的动态 url:
http://www.example.com/index.php/?content/page1
到
http://www.example.com/content/page1
我当前的 htaccess 规则是:
RewriteBase /
RewriteCond %{HTTP_HOST} !=""
RewriteRule ^index.php(/.*)$ http://%{HTTP_HOST}$1 [R=301]
问题是我得到这样的网址:
http://www.example.com/?content/page1
如何从网址中删除该问号 (?)。这也适用于这种模式中的大约 20 个不同的 url。我希望该规则适用于我所有需要在这种模式下为 301 的网址。
【问题讨论】:
-
请使用代码块。
标签: .htaccess