2014-03-12 128 views
1

如何將此頁面重定向查詢字符串: example.com/index.php?option=1 &視圖=新聞 這個 /新聞htaccess的永久重定向在URL

我綁簡單

Redirect /index.php?option=1&view=news /news 

,但它不工作

回答

1

您需要使用mod_rewrite匹配的查詢字符串:

RewriteEngine On 

RewriteCond %{THE_REQUEST} /index\.php\?option=1&view=news [NC] 
RewriteRule^/news? [R=301,L] 
+0

真棒,謝謝 – user2746186

+0

不客氣,很高興它解決了。 – anubhava