index.php怎么301重定向到首页 wordpress 301重定向

主机教程 建站分享 2年前 (2022-10-29) 239次浏览

文章摘要:index.php怎么301重定向到首页 wordpress 301重定向

index.php301重定向到首页的方法: index.php这个默认是首页,可以通过添加以下代码来做301 […]

index.php301重定向到首页的方法:

index.php这个默认是首页,可以通过添加以下代码来做301重定向,代码如下:

$the_host = $_SERVER['HTTP_HOST'];

$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';

if($the_host == 'www.123.com')

{

header('HTTP/1.1 301 Moved Permanently');

header('Location: http://123.com'.$request_uri);//

}

?>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:index.php怎么301重定向到首页 wordpress 301重定向
文章链接:http://www.7966.org/post/16206.html
转载请注明出处

喜欢 (0)