2
我需要一個htaccess 301重定向的動態網址,這個網址去:如何刪除?從使用301 htaccess的網址重定向
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
如何從url中刪除該問號(?)。這也適用於這種模式的大約20個不同的網址。我希望規則適用於所有需要在此模式下使用301的網址。
請使用代碼塊。 – joni 2010-10-27 08:32:56
對不起,我添加了代碼塊。 – SeanSpeedy 2010-10-27 08:48:45