2014-04-02 108 views
0

我需要將舊結構的URL重定向到新結構。將舊的URL結構重定向到新的URL結構?

舊網址:

http://domain.com/index.php?name=PNphpBB2&file=viewtopic&p=28341&highlight=inner#28341 

新網址:

http://domain.com/viewtopic.php?p=28341&highlight=inner#28341 

如何通過htaccess的做到這一點?或者我需要添加一些東西給/index.php文件?

在此先感謝。

+0

是name'在所有使用的參數'? – Howli

+0

名稱變量不再使用。 – Daniel

回答

0

您可以使用此規則在根.htaccess文件:

RewriteEngine On 

RewriteCond %{THE_REQUEST} \s/+index\.php\?name=[^&]*&file=viewtopic&p=([^&]+)&highlight=([^&]+) [NC] 
RewriteRule^/viewtopic.php?p=%1&highlight=%2#%1 [R=302,L,NE]