dedecms织梦程序首页如何去除index.html

2024-11-06 07:16:28
推荐回答(5个)
回答(1):

  关于dedecms织梦程序首页如何去除index.html有以下三种解决方法



  一、静态访问也分3种解决方法



  1、IIS


  打开IIS点击文档,里面将index.html置于index.php上面,这有什么作用呢?其实这样设置就是在网站同时有index.php和index.html的情况下,先访问index,html这样就不会出现跳转的情况


          


  2、Apache


  apache里面DirectoryIndex来控制文件检索优先级的


  DirectoryIndex index.html index.php index.htm


  和iis一样,将index.html往前放



  3、虚拟主机


  把网站默认首页index.html放到index.php前面,这样它自动读到index.html就不会跳转了

          




  二、直接动态浏览



  网站动态访问的情况下,程序会删除根目录下面的Index.html
,那么会执行include(dirname(__FILE__)。‘/index.html’);这段代码,把首页引用而非跳转。

          




  三、把dedecms的index.php更为以下内容



  GetOne("Select * From `#@__homepageset`"); $row['templet'] =
MfTemplet($row['templet']); $pv = new PartView();
$pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);
$pv->SaveToHtml(dirname(__FILE__).'/index.html');
include(dirname(__FILE__).'/index.html'); exit(); ?>



  //自动生成HTML版


  require_once (dirname(__FILE__) . "/include/common.inc.php");


  require_once DEDEINC."/arc.partview.class.php";


  $GLOBALS['_arclistEnv'] = 'index';


  $row = $dsql->GetOne("Select * From `#@__homepageset`");


  $row['templet'] = MfTemplet($row['templet']);


  $pv = new PartView();


  $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" .
$row['templet']);


  $pv->SaveToHtml(dirname(__FILE__).'/index.html');


  include(dirname(__FILE__).'/index.html');


  exit();


  ?>


  其实主要就是把那段301定向代码删除


  header(‘HTTP/1.1 301 Moved Permanently’);


  header(‘Location:index.html’);

回答(2):

  1. 织梦开源首页去除index.html可以从主机空间进行设置。

  2. 首先登陆主机空间。

  3. 打开空间管理设置。

  4. 打开基础环境设置

  5. 打开默认首页设置

  6. 选中index.html把index.html调整到第一位。

  7. 所有空间设置首页方法一样,没有这个功能的找服务商。不同的程序只要把首页文件设置到第一位就会去除。

回答(3):

1、把网站默认首页index.html放到index.php前面,这样它自动读到index.html就不会跳转了
2、把DEDECMS的index.php更改为
//自动生成HTML版 require_once (dirname(__FILE__) .
"/include/common.inc.php"); require_once
DEDEINC."/arc.partview.class.php"; $GLOBALS['_arclistEnv'] =
'index'; $row = $dsql->GetOne("Select * From
`#@__homepageset`"); $row['templet'] = MfTemplet($row['templet']);
$pv = new PartView(); $pv->SetTemplet($cfg_basedir .
$cfg_templets_dir . "/" . $row['templet']);
$pv->SaveToHtml(dirname(__FILE__).'/index.html');
include(dirname(__FILE__).'/index.html'); exit(); ?>
//自动生成HTML版
require_once (dirname(__FILE__) . "/include/common.inc.php");
require_once DEDEINC."/arc.partview.class.php";
$GLOBALS['_arclistEnv'] = 'index';
$row = $dsql->GetOne("Select * From `#@__homepageset`");
$row['templet'] = MfTemplet($row['templet']);
$pv = new PartView();
$pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);
$pv->SaveToHtml(dirname(__FILE__).'/index.html');
include(dirname(__FILE__).'/index.html');
exit();
?>
其实主要就是把那段301定向代码删除
header(‘HTTP/1.1 301 Moved Permanently’);
header(‘Location:index.html’);
以上两种方法绝对能解决dedecms首页地址不带index.html。
友情提示:以上两处都修改后需要更新下网站缓存,并且也要更新下浏览器缓存!

回答(4):

使用织梦DedeCMS建站的时候,网站首页界面显示没有什么问题,但是URL(浏览器地址栏)中却出现了/index.html的后缀。

对于SEO优化会分散网站首页权重,就算不去考虑搜索引擎优化,看着也感觉不是很爽,那么接下来,我们来看看如何去掉DedeCMS的这个烦人的尾巴吧:

  1. 一般情况下,显示/index.html这个后缀,都是网站服务器或者虚拟主机默认主页设置的顺序问题,只需要将index.html默认首页的优先级设为最高就可以解决了。如果使用虚拟主机搭建的DedeCMS网站,主机控制面板中都会有这一项。

  2. 对于Web服务器为Apache的虚拟主机来说,只需要在.htaccess文件中增加如下的代码即可:DirectoryIndex index.html index.htm index.php

  3. 如果以上的方法都无法去掉织梦DedeCMS首页链接默认显示的index.html,并且确认默认首页中index.html的优先级已经是最高,那么可以使用如下的方法,找到织梦DedeCMS根目录下的index.php文件,使用如下的代码代替:

    if(!file_exists(dirname(__FILE__).'/data/common.inc.php')){
        header ('Location:install/index.php');
        exit ();
    }
    require_once (dirname(__FILE__) . "/include/common.inc.php");
    require_once DEDEINC."/arc.partview.class.php";
    $GLOBALS['_arclistEnv'] = 'index';$row = $dsql->GetOne("Select * From `#@__homepageset`");
    $row['templet'] = MfTemplet ($row['templet']);
    $pv = new PartView ();
    $pv -> SetTemplet ($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);
    $pv -> Display ();
?>

回答(5):

织梦开源首页去除index.html,有以下解决方法。首先按照我们的步骤来:

 1、把网站默认首页index.html放到index.php前面,这样它自动读到index.html就不会跳转了

 2、把DEDECMS的index.php更改为

GetOne("Select * From `#@__homepageset`");       $row['templet'] = MfTemplet($row['templet']);       $pv = new PartView();       $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);       $pv->SaveToHtml(dirname(__FILE__).'/index.html');       include(dirname(__FILE__).'/index.html');       exit();   ?>
    //自动生成HTML版
  require_once (dirname(__FILE__) . "/include/common.inc.php");
  require_once DEDEINC."/arc.partview.class.php";
  $GLOBALS['_arclistEnv'] = 'index';
  $row = $dsql->GetOne("Select * From `#@__homepageset`");
  $row['templet'] = MfTemplet($row['templet']);
  $pv = new PartView();
  $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);
  $pv->SaveToHtml(dirname(__FILE__).'/index.html');
  include(dirname(__FILE__).'/index.html');
  exit();
  ?>