0

我需要一个 301 重定向

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

我尝试使用一些 .htaccess 规则但什么也没做,

mod-rewrite 已启用

谢谢

4

2 回答 2

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/

于 2013-05-16T03:35:05.053 回答
0

put this code on header.php pass in "get_the_ID(1)" post(simple-post)id. set redirect url.

<?php if (get_the_ID(1)) { ?>
   <script type="text/javascript">
         window.location = "http://www.google.com"; 
   </script>
<?php } ?>
于 2013-05-16T05:22:46.903 回答