dedecms如何去掉首页indexhtml
网站首页域名后面indexhtml去掉的具体步骤:在主机(虚拟空间)里面设置默认首页顺序:把indexhtml提到最前面;进入网站空间的后台管理界面,点击基础环境设置——默认首页设置;在默认首页设置页面,点击indexhtml;选中indexhtml之后,点击右侧向上的箭头,然后保存设置;按照这样的步骤就可以完成默认首页的设置,然后再刷新浏览器就可以看到后面的indexhtml已经不见了。
在正常情况,有两个地方会出现indexhtml,一个是首页自动跳转到indexhtml,还有一个是在导航的栏目中,下面给大家说说怎么去掉这个indexhtml。
1、去除首页跳转indexhtml
更改indexphp页面把
header('HTTP/11 301 Moved Permanently');header('Location:indexhtml'); 替换成
include(dirname(__FILE__)'/indexhtml'); exit(); 即可。
2、去除导航中的indexhtml
我们采用的方法是在标签中替换掉indexhtml字符
[field:typeurl function='str_replace("indexhtml","",@me)'/]
去掉首页后缀html 增加PR
虽然Google PR到底有什么作用,至今谁也说不清楚。但是高总比低好,这点相信大家都是认同的。今天同大家分享一个去掉域名后面indexhtml后缀,增加谷歌PR的小方法。
去除indexhtml后缀,其中设计主域名的后缀和栏目页后缀。下面我以DedeCMS织梦系统为例跟大家简单讲两种方法。去除后效果:ebuyeecom/indexhtml,转变为:ebuyeecom;
如何去掉“当前位置和栏目路径中:主页》栏目》”连接中的indexhtm
方法一在channelunitfuncphp文件里第150行$sitepath = MfTypedir($sitepath);下添加如下代码:
//导航和其他调用栏目的地址去掉indexhmtl
if($ispart>2){
return $typedir;
}
if($defaultname == 'indexhtml'){
$defaultname = '';
}
if(!file_exists(dirname(__FILE__)'/data/commonincphp'))
{
header('Location:install/indexphp');
exit();
}
require_once (dirname(__FILE__) "/include/commonincphp");
require_once DEDEINC"/arcpartviewclassphp";
$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->Display();
> if(!file_exists(dirname(__FILE__)'/data/commonincphp'))
{
header('Location:install/indexphp');
exit();
}
require_once (dirname(__FILE__) "/include/commonincphp");
require_once DEDEINC"/arcpartviewclassphp";
$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->Display();
>
第一步:进入管理权限空间,点击云虚拟主机
第二步:进入虚拟主机界面,点击管理
第三步:点击基础环境设置,然后点击默认首页设置
第四步:点击indexhtml然后点击右边的向上箭头,把它调整到最上边,最后点击保存设置,就成功了
工具:
dedecms
方法:
首先登陆主机空间,打开空间管理设置。
打开基础环境设置--默认首页设置。
把indexhtml向下调整为非最上面即可。
如果要是想删除该页面,可以到空间目录中把该文件删除即可,没有任何影响。
织梦主页的indexhtml去除方法:
1、找到织梦的工程目录,找到htaccess,用“记事本”打开,写入预备好的伪静态规则;
2、增加以下代码:
DirectoryIndex indexhtml indexphp indexhtm
3在主机里面设置默认首页顺序:把indexhtml提到最前面。
0条评论