Windows环境中直接修改wordpress函数就能够实现301重定向,方法以下:
1.打开根目录下的wp-blog-header.php文件。
2.在<?php后面添加以下代码:
if(strtolower($_SERVER['SERVER_NAME'])!='***.com')
{
$URIRedirect=$_SERVER['REQUEST_URI'];
if(strtolower($URIRedirect)=="/index.php")
{
$URIRedirect="/";
}
header('HTTP/1.1301MovedPermanently');
header('Location:https://***.com'.$URIRedirect);
exit();
}
本文来源:https://www.yuntue.com/post/78934.html | 云服务器网,转载请注明出处!