DEDECMS首页301重定向,将不带www的主域名定向到带www
1 2 3 4 5 6 7 8 9 | $redirect301 =1;
$index_file = 'index.html' ;
if ( substr ( $_SERVER [ 'SERVER_NAME' ],0,4)!= 'www.' && $redirect301 )
{
header( 'HTTP/1.1 301 Moved Permanently' );
header( 'Location:http://www.' . $_SERVER [ 'SERVER_NAME' ]); //301跳转到www
exit ();
}
|
把上边的代码加入到首页index.php中
1 | if (! file_exists (dirname( __FILE__ ). '/data/common.inc.php' ))
|
的上边。
但请注意了:如果你的默认首页index.html排在了index.php上面,那么以上方法就不管用了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
本文由主机测评网发布,不代表主机测评网立场,转载联系作者并注明出处:https://zhuji.jb51.net/dedecms/3965.html