1
如何將此頁面重定向查詢字符串: example.com/index.php?option=1 &視圖=新聞 這個 /新聞htaccess的永久重定向在URL
我綁簡單
Redirect /index.php?option=1&view=news /news
,但它不工作
如何將此頁面重定向查詢字符串: example.com/index.php?option=1 &視圖=新聞 這個 /新聞htaccess的永久重定向在URL
我綁簡單
Redirect /index.php?option=1&view=news /news
,但它不工作
您需要使用mod_rewrite
匹配的查詢字符串:
RewriteEngine On
RewriteCond %{THE_REQUEST} /index\.php\?option=1&view=news [NC]
RewriteRule^/news? [R=301,L]
真棒,謝謝 – user2746186
不客氣,很高興它解決了。 – anubhava