1
我怎樣才能做到通過htaccess的這個重定向到URL: http://example.com - > HTPP://示例.com myparam = 123如何重定向主頁面參數
我怎樣才能做到通過htaccess的這個重定向到URL: http://example.com - > HTPP://示例.com myparam = 123如何重定向主頁面參數
你可以說,如果查詢字符串是空的(的RewriteCond線)和請求的URL /然後重定向用戶到頁面與PARAM,如果你想重定向所有頁面不僅僅是根,那麼你會改變重寫規則來。*例如
RewriteEngine On
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^/?$ /?myparam=123 [L,NC,R=301]
[301重定向的可能的複製.htaccess](http://stackoverflow.com/questions/4037467/301-redirect-htaccess) –
其他有用的鏈接:[提示調試.htaccess重寫規則] (http://stackoverflow.com/q/9153262/1218980),[參考:mod_rewrite,URL重寫和「漂亮鏈接」解釋](http://stackoverflow.com/q/20563772/1218980)。 –