您现在的位置是:首页 > 教程 > dedecms教程dedecms教程

dedecms正确设置301的方法

春竹2023-11-02 23:11:20dedecms教程已有人查阅

导读适用于绑定了两个域名的网站,将不带www的转向带www的,首先在空间设置里将index.php的优先级设为很高;

适用于绑定了两个域名的网站,将不带www的转向带www的,首先在空间设置里将index.php的优先级设为很高;
然后编辑根目录下的index.php 替换为以下代码
<?php
//-----------------------------------------------
//ad:www.ebingou.cn
//-----------------------------------------------
$jump301=1;//是否开启301跳转开关,1开 0关
$index_file='index.html';//首页文件 不支持SSI(shtml/shtm)
if(substr($_SERVER['SERVER_NAME'],0,4)!='www.'&&$jump301)
{
header('HTTP/1.1 301 Moved Permanently');
header('Location:http://www.'.$_SERVER['SERVER_NAME']);
exit();
}
if(!file_exists(dirname(__FILE__).'/data/common.inc.php'))
{
header('Location:install/index.php');
exit();
}
//自动生成HTML版
if(isset($_GET['upcache']))
{
require_once (dirname(__FILE__) . "/include/common.inc.php");
require_once DEDEINC."/arc.partview.class.php";
$GLOBALS['_arclistEnv'] = 'index';
$row = $dsql->GetOne(“Select * From `dede_homepageset`”);
$row['templet'] = MfTemplet($row['templet']);
$pv = new PartView();
$pv->SetTemplet($cfg_basedir . $cfg_templets_dir . “/” . $row['templet']);
$pv->SaveToHtml(dirname(__FILE__).’/’.$index_file);
include(dirname(__FILE__).’/’.$index_file);
exit();
}
include(dirname(__FILE__).’/’.$index_file);
?>
ok,大功告成,去查询工具查一下吧

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签