我想重定向在文檔根重定向特定的URL與參數
http://www.mountainfoxinn.com/forum/showthread.php?t=33105&p=246263
到
http://www.mountainfoxinn.com/forum/
通過.htaccess文件。我有RewriteEngine On和一些簡單的重定向正在工作。但是這個不起作用。我嘗試了以下規則,但他們都沒有工作。
1. RewriteCond %{QUERY_STRING} ^p=246263$
RewriteRule ^(.*)$ http://mountainfoxinn/forum? [R=301,L]
2. RewriteRule ^(.)showthread.php(.)$ http://mountainfoxinn/forum/ [L,R=301]
3. RewriteRule ^(.)246263(.)$ http://mountainfoxinn/forum/ [L,R=301]
任何幫助,高度讚賞。
所以,你想從一個特定線程論壇主頁重定向?爲了什麼目的? –
看起來像你想要的http://stackoverflow.com/questions/583705/redirecting-urls-with-specific-get-parameters –
@ user2922822:你有'.htaccess'在論壇目錄?如果是,那麼在這裏發佈你的代碼。 – anubhava