下面就来分享下内容页域名跳转重定向的简单代码:
打开根目录下得wp-blog-header.php,在< ?php后面添加如下代码:
1 2 3 4 5 6 7 8 9 10 11 |
if (strtolower($_SERVER['SERVER_NAME']) != 'www.cutepig.net') { $URIRedirect=$_SERVER['REQUEST_URI']; if(strtolower($URIRedirect)=="/index.php") { $URIRedirect="/"; } header('HTTP/1.1 301 Moved Permanently'); header('Location:http://www.cutepig.net'.$URIRedirect); exit(); } |
浏览量: 29