2014-06-30 71 views
0

301重命名的文件,我應該重命名文件(網頁)與參數和重定向所有(生成的參數)舊網頁,以更新,如:htaccess的重定向與參數

page.php文件 - >改名 - > NEWPAGE。 PHP

重定向

page.php?param1=1&param2=string -> Redirect 301 -> newpage.php?param1=1&param2=string 
page.php?param1=2&param2=string -> Redirect 301 -> newpage.php?param1=2&param2=string 
page.php?param1=3&param2=string -> Redirect 301 -> newpage.php?param1=3&param2=string 

... ...

什麼是正確的.htaccess代碼?

謝謝 M.

+0

也許這個問題同樣有這個問題,[試試這個答案] [1] [1]:http://stackoverflow.com/questions/20658268/htaccess-301-redirect-for-url-with-parameter/20658952#20658952 – Sucipto

回答

0

你可以只把這個規則在你的根的.htaccess:

RedirectMatch 301 ^/page\.php$ /newpage.php