dedecms首页301重定向,将不带www的主域名定向到带www
//主域名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.php中
if(!file_exists(dirname(__FILE__).'/DAta/common.inc.php'))登录后复制
的上边。