我应该使用参数重命名文件(网页)并将所有(生成的参数)旧页面重定向到更新的页面:
page.php - >重命名 - > newpage.php
重定向
page.php?param1=1¶m2=string -> Redirect 301 -> newpage.php?param1=1¶m2=string
page.php?param1=2¶m2=string -> Redirect 301 -> newpage.php?param1=2¶m2=string
page.php?param1=3¶m2=string -> Redirect 301 -> newpage.php?param1=3¶m2=string
... ...
什么是正确的.htaccess代码?
谢谢 微米。
答案 0 :(得分:0)
您可以将此规则放在根目录中.htaccess:
RedirectMatch 301 ^/page\.php$ /newpage.php