supesite首页html静态化地址优化方法
修改方法
在function/common.func.php中
查找
| if(empty($_SGET['php']) &&
!empty($_SGLOBAL['htmlfile']['path']) &&
file_exists($_SGLOBAL['htmlfile']['path'])) { sheader($_SGLOBAL['htmlfile']['url']); } |
替换为
| if(empty($_SGET['php']) &&
!empty($_SGLOBAL['htmlfile']['path']) &&
file_exists($_SGLOBAL['htmlfile']['path'])) { if($_SGLOBAL['htmlfile']['path']== './html/index.html'){ include(S_ROOT.'./html/index.html'); exit; }else sheader($_SGLOBAL['htmlfile']['url']); } |
ok,done!



