最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

phpcms無法讀取index.html的解決辦法(Action does not exist)

  發(fā)布時間:2012-09-24 10:36:33   作者:佚名   我要評論
打開網(wǎng)站提示 Action does not exist. 是程序無法讀取index.html的原因,但后來修改偽靜態(tài)規(guī)則后,還是不行-,-現(xiàn)在就補充一下如何解決這個問題
在翻論壇的時候,找到一篇需要修改首頁生成shtml的帖子。之后我把首頁生成文件改成"index.htm",后臺生成首頁后,可直接訪問······單獨創(chuàng)建“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';
//添加到發(fā)布點隊列
$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';
//添加到發(fā)布點隊列
$this->queue->add_queue('edit',$file,$this->siteid);
$file = PHPCMS_PATH.$file;
}

修改成

復制代碼
代碼如下:

/**
* 更新首頁
*/
public function index() {
if($this->siteid==1) {
$file = PHPCMS_PATH.'index.htm';
//添加到發(fā)布點隊列
$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';
//添加到發(fā)布點隊列
$this->queue->add_queue('edit',$file,$this->siteid);
$file = PHPCMS_PATH.$file;
}

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

相關文章

最新評論

容城县| 称多县| 西华县| 徐闻县| 隆化县| 哈密市| 余干县| 高清| 赣州市| 宜都市| 布尔津县| 敖汉旗| 佳木斯市| 华阴市| 松原市| 牟定县| 多伦县| 大同市| 翁源县| 珠海市| 茌平县| 六枝特区| 绵阳市| 马尔康县| 浦北县| 仪陇县| 沂水县| 赣州市| 乌鲁木齐市| 汕尾市| 永安市| 繁昌县| 陈巴尔虎旗| 阳原县| 冷水江市| 永安市| 乐亭县| 武山县| 江达县| 遵义市| 哈尔滨市|