当前位置:首页 > CMS教程 > DeDecms > 列表

织梦DEDECMS首页301重定向

发布:smiling 来源: PHP粉丝网  添加日期:2019-07-16 11:41:20 浏览: 评论:0 

DEDECMS首页301重定向,将不带www的主域名定向到带www

  1. //主域名301跳转到www    
  2. $redirect301=1; //301跳转开关,1代表打开,0代表关闭    
  3. $index_file='index.html'//指定网站默认首页文件,DeDeCMS设置为index.html,不支持SSI(shtml/shtm)    
  4. if(substr($_SERVER['SERVER_NAME'],0,4)!='www.'&&$redirect301//判断URL中是否带www    
  5. {    
  6. header('HTTP/1.1 301 Moved Permanently');    
  7. header('Location:http://www.'.$_SERVER['SERVER_NAME']); //301跳转到www    
  8. exit();   //phpfensi.com 
  9. }  

把上边的代码加入到首页index.php中

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

的上边。

但请注意了:如果你的默认首页index.html排在了index.php上面,那么以上方法就不管用了。

Tags: DEDECMS 301重定向

分享到: