|
|
主要改两个文件,路径为网站根目录: index.php , include\index.htm.php
1: index.php 55行下
$html_file = $CFG['com_dir'] ? DT_ROOT.'/'.$DT['index'].'.'.$DT['file_ext'] : DT_CACHE.'/index.inc.html';
改为:
$html_file = $CFG['com_dir'] ? DT_ROOT.'/'.$DT['index'].'.'.$DT['file_ext'] : DT_CACHE.'/index.inc.html';
if($cityid) $html_file=str_replace('/index','/index_'.$cityid,$html_file);
2. include\index.htm.php 15行下
$filename = $CFG['com_dir'] ? DT_ROOT.'/'.$DT['index'].'.'.$DT['file_ext'] : DT_CACHE.'/index.inc.html';
改为:
$filename = $CFG['com_dir'] ? DT_ROOT.'/'.$DT['index'].'.'.$DT['file_ext'] : DT_CACHE.'/index.inc.html';
if($cityid) $filename=str_replace('/index','/index_'.$cityid,$filename); |
|