htaccess重定向301使用参数重命名文件

时间:2014-06-30 07:49:59

标签: .htaccess parameters

我应该使用参数重命名文件(网页)并将所有(生成的参数)旧页面重定向到更新的页面:

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代码?

谢谢 微米。

1 个答案:

答案 0 :(得分:0)

您可以将此规则放在根目录中.htaccess:

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