index.html没有办法被phpcms读取的原因和解决方案

来源:爱站网时间:2022-04-18编辑:网友分享
当我们打开phpcms的时候,很多朋友都会遇到index.html无法被读取的状态,修改伪静态规则后也还是不可以,那怎么办呢?接下来就让爱站技术频道小编来给大家一一讲解下吧!

在翻论坛的时候,找到一篇需要修改首页生成shtml的帖子。之后我把首页生成文件改成"index.htm",后台生成首页后,可直接访问······单独创建“index.html文件直接读取绝对地址,依然提示“Action does not exist.”这就让我很蛋疼了,不知道是我修改了哪地方导致的这问题······

对下面的目录文件进行修改:

代码如下:

\phpcms\modules\content\classes\html.class.php


查找

代码如下:

/**
* 更新首页
*/
public function index() {
if($this->siteid==1) {
$file = PHPCMS_PATH.'index.html';
//添加到发布点队列
$this->queue->add_queue('edit','/index.html',$this->siteid);
} else {
$site_dir = $this->sitelist[$this->siteid]['dirname'];
$file = $this->html_root.'/'.$site_dir.'/index.html';
//添加到发布点队列
$this->queue->add_queue('edit',$file,$this->siteid);
$file = PHPCMS_PATH.$file;
}


修改成

代码如下:
/**
* 更新首页
*/
public function index() {
if($this->siteid==1) {
$file = PHPCMS_PATH.'index.htm';
//添加到发布点队列
$this->queue->add_queue('edit','/index.htm',$this->siteid);
} else {
$site_dir = $this->sitelist[$this->siteid]['dirname'];
$file = $this->html_root.'/'.$site_dir.'/index.html';
//添加到发布点队列
$this->queue->add_queue('edit',$file,$this->siteid);
$file = PHPCMS_PATH.$file;
}


然后重新就OK了。当然你也可以修改成"index,shtml"。

不知道朋友们对上述文章都了解清楚了没有,还有不明白的地方可以随时来网站咨询小编。喜欢这种类型文章的朋友可以随时来关注下爱站技术频道网站。

上一篇:phpcms调用模板默认循环代码的操作

下一篇:PHPCMS V9在采集过程中出现相对路径的处理方案

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载