织梦教程:首页实现301重定向的方法

2017-04-13 14:26:52 dedecms

本文主要讲解

织梦

dedecms如何将不带www的域名定向到带www的域名

打开

 index.php 

文件

找到

if(!file_exists(dirname(__FILE__).'/data/common.inc.php'))

在此代码上边添加

//主域名301跳转到www   

$redirect301=1; //301跳转开关,1代表打开,0代表关闭   

$index_file='index.html'; //指定网站默认主页文件,DeDeCMS设置为index.html,不支持SSI(shtml/shtm)   

if(substr($_SERVER['SERVER_NAME'],0,4)!='www.'&&$redirect301) //判断URL中是否带www   

{   

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

header('Location:http://www.'.$_SERVER['SERVER_NAME']); //301跳转到www   

exit();   

}

注意

:如果默认主页index.html排在了index.php前面,此方法就不能用了