如何使用.htaccess正确地从旧网址重定向到新网址?

时间:2011-10-15 03:31:39

标签: .htaccess mod-rewrite

好的,我最近完成了清理我的网址。 但我仍然有谷歌索引页面在旧网址下。 在.htaccess中,我尝试的是:

    RedirectMatch permanent ^profile2.php?id=([^/]+) /profile/$1

但它似乎没有工作......帮助任何人?我做错了什么?

1 个答案:

答案 0 :(得分:1)

您应该使用301永久重定向:

RewriteRule ^profile2.php?id=([^/]+) /profile/$1 [R=301]