ECSHOP首页生成纯静态页插件

2016-06-13 13:05 来源:www.chinab4c.com 作者:ecshop专家

ecshop首页生成静态首页插件 如果网站访问量比较大,我们可以把ecshop的网站的首页生成html,减小服务器的压力,让ecshop首页打开得更快一点 实现这个可以按以下两步完成:   一、打开admin/templates/top.htm

{if $send_mail_on eq 'on'} {$lang.loading} {$lang.email_sending} {$lang.pause} {/if} {$lang.clear_cache} {$lang.signout}
  修改成
{if $send_mail_on eq 'on'} {$lang.loading} {$lang.email_sending} {$lang.pause} {/if} 生成静态首页 {$lang.clear_cache} {$lang.signout}
  增加生成静态页的后台操作链接 二、前台增加生成html的php文件_creat_index.php url(),'/'); $index_file = ROOT_PATH . 'index.html'; $source_url = $site_url . '/index.php'; file_put_contents($index_file, file_get_contents($source_url), LOCK_EX); ?> done! " target="_blank">go to index