WordPress 301

由于时间问题,暂时没有制作新的WordPress主题,先拿到WP官方主题Twenty Ten就是一顿nofollow伺候,保证URL的唯一性,网站仍然保持使用POSTNAME的URL命名方式作为固定链接,但是如何对WordPress 301处理了,之前的blog.iopenv.com现在转到xiedexu.cn了。

网上查了很多方法,有对apache的方法,又对IIS的方法。下面我们说一个最简单的方法:

在你的WordPress根目录下找到wp-blog-header.php文件,在第一个<?php 后面添加以下代码

if (strtolower($_SERVER['SERVER_NAME'])!='xiedexu.cn')
{
$URIRedirect=$_SERVER['REQUEST_URI'];
if(strtolower($URIRedirect)=="/index.php")
{
$URIRedirect="/";
}
header('HTTP/1.1 301 Moved Permanently');
header('Location:http://xiedexu.cn'.$URIRedirect);
exit();
}

注意:xiedexu.cn改为你要跳转到新的网站。

你可能感兴趣的:(wordpress,301)