如何将所有wordpress帖子和页面重定向到新域。

时间:2013-05-16 03:20:34

标签: wordpress redirect

我需要301重定向

www.old-domain.com/simple-post/访问www.new-domain.com(不是new-domain.com/simple-post)

我尝试使用一些.htaccess规则并没有做任何事,

启用mod-rewrite

感谢

2 个答案:

答案 0 :(得分:1)

如果您要将WordPress网站从域名转移到另一个域名,可以采用以下方式:

http://codex.wordpress.org/Moving_WordPress

几乎所有时间这些线都可以解决问题:

//FIXME: do comment/remove these hack lines. (once the database is updated)
update_option('siteurl', 'http://your.domain.name/the/path' );
update_option('home', 'http://your.domain.name/the/path' );

当然,您还需要更改帖子和/或模板文件中的每个静态链接。

以下链接有助于替换内容中的链接:

http://lorelle.wordpress.com/2005/12/01/search-and-replace-in-wordpress-mysql-database/

答案 1 :(得分:0)

  

将此代码放在header.php上       传入“get_the_ID(1)”帖子(简单帖子)id。       设置重定向网址。

<?php if (get_the_ID(1)) { ?>
   <script type="text/javascript">
         window.location = "http://www.google.com"; 
   </script>
<?php } ?>