wordpress实现301跳转的方法:
打开根目录下的“wp-blog-header.php”文件,在“<?php”后面添加以下代码:
if(strtolower($_SERVER['SERVER_NAME'])!='www.123.com')
{
$URIRedirect=$_SERVER['REQUEST_URI'];
if(strtolower($URIRedirect)=="/index.php")
{
$URIRedirect="/";
}
header('HTTP/1.1301MovedPermanently');
header('Location:http://www.123.com'.$URIRedirect);
exit();
}
本文来源:https://www.yuntue.com/post/78347.html | 云服务器网,转载请注明出处!