使用htaccess重写旧站点URL

时间:2012-05-06 11:42:53

标签: wordpress apache .htaccess migration

我刚将网站移到了Wordpress。

帖子的旧网站网址如下http://www.example.com/view-story.php?sid=437 Wordpress看起来像http://www.example.com/?p=437

我需要将对旧网址的任何请求重定向到新的wordpress网址。

有人能告诉我我需要在网站的htaccess文件中添加什么内容吗?

由于

1 个答案:

答案 0 :(得分:0)

RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} ^sid=([0-9]+)$
RewriteRule ^view-story.php ?p=%1 [R=302,L]
一旦你开始工作,

将302改为301。