织梦首页index.html如何去掉

织梦首页index.html如何去掉,第1张

概述去掉织梦首页index.html的方法:首先打开www根目录下的index.php文件;然后添加代码“$GLOBALS['_arclistEnv'] = 'index';”并保存即可。

织梦首页index.HTML如何去掉?

很多朋友在使用织梦建站或者仿站时都会发现,在访问首页时后面都会添加上index.HTML

现在我就把这解决办法分享出来,大家可以试一试,看有没有用

推荐学习:织梦CMS

在www/ 跟目录下有个自带的index.PHP文件

原代码

代码如下:

//自动生成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.HTML');include(dirname(__file__).'/index.HTML');exit();}else{header('http/1.1 301 Moved Permanently');header('Location:index.HTML');}?>

把上面的代码替换为

代码如下:

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->display();?>

然后就可以了。

以上就是织梦首页index.HTML如何去掉的详细内容,更多请关注内存溢出其它相关文章!

总结

以上是内存溢出为你收集整理的织梦首页index.html如何去掉全部内容,希望文章能够帮你解决织梦首页index.html如何去掉所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/1042208.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存