php首页定向到内页代码

php首页定向到内页代码,index.php头部加上以下代码, /afish-c-1/换成内页链接即可。

if($_SERVER["REQUEST_URI"]=='/' || $_SERVER["REQUEST_URI"]=='/index.html' || $_SERVER["REQUEST_URI"]=='/index.php'){
header('Location:http://'.$_SERVER['HTTP_HOST'].'/afish-c-1/');
}

 附域名跳转代码:

if(strpos($_SERVER['HTTP_HOST'], 'afish.cnblogs.com')=== false){
header('Location:http://afish.cnblogs.com');
}
原文地址:https://www.cnblogs.com/afish/p/4609198.html