当前位置: 首页 > 站长资讯 > 正文页面

DedeCMS系统301重定向配置方法详解

本文实例讲述了DedeCMS系统301重定向配置方法。分享给大家供大家参考。具体实现方法如下:Wah网站目录_网站网址收录与提交入口

301对于做网站优化的人来讲并不陌生了,像很多网站你访问不带www的会直接跳到www的网址去,这样就会有一个301配置了,如果你用站长工具查会发现是一个301状态代码,这个就是告诉搜索引擎权限给予www,下面我们一起来看看dedecms配置方法,感兴趣的朋友可以实际测试一下.Wah网站目录_网站网址收录与提交入口

一、Linux系统下如何设置301重定向Wah网站目录_网站网址收录与提交入口

1、建立一个记事本文档,然后点击“文件”--“另存为”,“保存类型”选择“所有文件”,文件名为 .htaccess 就可以,这样不会强制要求输入文件名.Wah网站目录_网站网址收录与提交入口

2、用记事本打开刚才新建的 .htaccess 文件,将下面的代码复制进去:Wah网站目录_网站网址收录与提交入口

Options +FollowSymLinksWah网站目录_网站网址收录与提交入口

RewriteEngine onWah网站目录_网站网址收录与提交入口

rewritecond %{http_host} ^phpfensi[nc]Wah网站目录_网站网址收录与提交入口

rewriterule ^(.*)$ http://down.admin5.com/info/$1 [r=301,nc]Wah网站目录_网站网址收录与提交入口

3、把网址替换成您的网址,然后保存上传你网站的根目录,这个时候你会发现在你IE地址栏里输入根域名就会跳转到www这个域名.Wah网站目录_网站网址收录与提交入口

二、Windows系统下如何设置301重定向并去掉html,将下面的代码直接替换根目录下面的 index.php 文件,Wah网站目录_网站网址收录与提交入口

<?phpWah网站目录_网站网址收录与提交入口

$HOST=$_SERVER['HTTP_HOST'];Wah网站目录_网站网址收录与提交入口

if ($HOST=="429006.com"|| $HOST==down.admin5.com/info"{Wah网站目录_网站网址收录与提交入口

Header("HTTP/1.1 301 Moved Permanently");Wah网站目录_网站网址收录与提交入口

Header("Location:http://down.admin5.com/info");Wah网站目录_网站网址收录与提交入口

exit();Wah网站目录_网站网址收录与提交入口

}Wah网站目录_网站网址收录与提交入口

if(!file_exists(dirname(__FILE__).'/data/common.inc.php'))Wah网站目录_网站网址收录与提交入口

{Wah网站目录_网站网址收录与提交入口

header('Location:install/index.php');Wah网站目录_网站网址收录与提交入口

exit();Wah网站目录_网站网址收录与提交入口

}Wah网站目录_网站网址收录与提交入口

require_once (dirname(__FILE__) . "/include/common.inc.php");Wah网站目录_网站网址收录与提交入口

require_once DEDEINC."/arc.partview.class.php"; $GLOBALS['_arclistEnv'] = 'index';Wah网站目录_网站网址收录与提交入口

$row = $dsql->GetOne("Select * From `dede_homepageset`");Wah网站目录_网站网址收录与提交入口

$row['templet'] = MfTemplet($row['templet']);Wah网站目录_网站网址收录与提交入口

$pv = new PartView();Wah网站目录_网站网址收录与提交入口

$pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" .Wah网站目录_网站网址收录与提交入口

$row['templet']);Wah网站目录_网站网址收录与提交入口

$pv->Display();Wah网站目录_网站网址收录与提交入口

?>Wah网站目录_网站网址收录与提交入口

或者使用下面的代码:Wah网站目录_网站网址收录与提交入口

<?phpWah网站目录_网站网址收录与提交入口

$jump301=1;//是否开启301跳转开关,1开 0关Wah网站目录_网站网址收录与提交入口

$index_file='index.html';//首页文件 不支持SSI(shtml/shtm)Wah网站目录_网站网址收录与提交入口

if(substr($_SERVER['SERVER_NAME'],0,4)!='www.'&&$jump301)Wah网站目录_网站网址收录与提交入口

{Wah网站目录_网站网址收录与提交入口

header('HTTP/1.1 301 Moved Permanently');Wah网站目录_网站网址收录与提交入口

header('Location:http://www.'.$_SERVER['SERVER_NAME']);Wah网站目录_网站网址收录与提交入口

exit();Wah网站目录_网站网址收录与提交入口

}Wah网站目录_网站网址收录与提交入口

if(!file_exists(dirname(__FILE__).'/data/common.inc.php'))Wah网站目录_网站网址收录与提交入口

{Wah网站目录_网站网址收录与提交入口

header('Location:install/index.php');Wah网站目录_网站网址收录与提交入口

exit();Wah网站目录_网站网址收录与提交入口

}Wah网站目录_网站网址收录与提交入口

//自动生成HTML版Wah网站目录_网站网址收录与提交入口

if(isset($_GET['upcache']))Wah网站目录_网站网址收录与提交入口

{Wah网站目录_网站网址收录与提交入口

require_once (dirname(__FILE__) . "/include/common.inc.php");Wah网站目录_网站网址收录与提交入口

require_once DEDEINC."/arc.partview.class.php";Wah网站目录_网站网址收录与提交入口

$GLOBALS['_arclistEnv'] = 'index';Wah网站目录_网站网址收录与提交入口

$row = $dsql->GetOne("Select * From `dede_homepageset`");Wah网站目录_网站网址收录与提交入口

$row['templet'] = MfTemplet($row['templet']);Wah网站目录_网站网址收录与提交入口

$pv = new PartView();Wah网站目录_网站网址收录与提交入口

$pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);Wah网站目录_网站网址收录与提交入口

$pv->SaveToHtml(dirname(__FILE__).'/'.$index_file);Wah网站目录_网站网址收录与提交入口

include(dirname(__FILE__).'/'.$index_file);Wah网站目录_网站网址收录与提交入口

exit();Wah网站目录_网站网址收录与提交入口

}Wah网站目录_网站网址收录与提交入口

include(dirname(__FILE__).'/'.$index_file);Wah网站目录_网站网址收录与提交入口

?>Wah网站目录_网站网址收录与提交入口

总结:其实最简单办法就是在服务器上做301,比起代码修改要简单很多Wah网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms建站有所帮助。Wah网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章