phpcms 文件:index.html 不可写,phpcms无法读取index.html的解决办法(Action does not exist)...

"在PHPCMS系统中,将首页生成文件从shtml改为index.htm后,遇到访问问题。通过修改`phpcmsmodulescontentclasseshtml.class.php`文件中的相关代码,将'index.html'替换为'index.htm',成功解决了Action does not exist.的错误。修改后,系统能正常生成和读取index.htm文件。"
摘要由CSDN通过智能技术生成

在翻论坛的时候,找到一篇需要修改首页生成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"。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值