国外网站空间租用不支持301跳转解决的方法:1、打开index.php文件;2、在index.php文件中加入重定向301的代码;3、加入后保存上传覆盖即可。
具体操作步骤:
1、打开网站根目录下的index.php文件进行编辑。
2、在index.php文件的顶部<?php下面加入以下代码:
$the_host = $_SERVER['HTTP_HOST'];if($the_host != 'www.123.com'){
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://www.123.com/");
exit();
}
注:将这里的123换成你需要做重定向的域名。
3、最后将重新编辑后的index.php文件保存上传覆盖即可。