1. 程式人生 > >phpcms v9首頁開啟預設為黃頁的解決辦法

phpcms v9首頁開啟預設為黃頁的解決辦法

前提條件,正常安裝v9正常安裝黃頁模組,需要更改兩個檔案
1、根目錄caches\configs\route.php檔案,大概位置在24行,將原始碼更改如下:


return array(
        'default'=>array('m'=>'yp', 'c'=>'index', 'a'=>'init'),
);

2、根目錄phpcms\modules\content\classes\html.class.php檔案,大概位置在336行,將原始碼更改如下:

include template('yp','index',$style);

改為:

# include template('yp','index',$style);
require PHPCMS_PATH."/phpcms/modules/yp/index.php"; $i = new index(); $i->init();