您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop首页生成纯静态页插件
曼文2023-12-17 22:25:05ecshop商城教程已有人查阅
导读如果网站访问量比较大,我们可以把ecshop的网站的首页生成html,减小服务器的压力,让ecshop首页打开得更快一点实现这个可以按以下两步完成:
ecshop首页生成静态首页插件如果网站访问量比较大,我们可以把ecshop的网站的首页生成html,减小服务器的压力,让ecshop首页打开得更快一点实现这个可以按以下两步完成:
一、打开admin/templates/top.htm
二、前台增加生成html的php文件_creat_index.php
一、打开admin/templates/top.htm
<div id="send_info" style="padding: 5px 10px 0 0; clear:right;text-align: right; color: #FF9900;width:40%;float: right;">
{if $send_mail_on eq 'on'}
<span id="send_msg"><img src="images/top_loader.gif" width="16" height="16" alt="{$lang.loading}" style="vertical-align: middle" /> {$lang.email_sending}</span>
<a href="javascript:;" onClick="Javascript:switcher()" id="lnkSwitch" style="margin-right:10px;color: #FF9900;text-decoration: underline">{$lang.pause}</a>
{/if}
<a href="index.php?act=clear_cache" target="main-frame" class="fix-submenu">{$lang.clear_cache}</a>
<a href="privilege.php?act=logout" target="_top" class="fix-submenu">{$lang.signout}</a>
</div>
修改成
<div id="send_info" style="padding: 5px 10px 0 0; clear:right;text-align: right; color: #FF9900;width:40%;float: right;">
{if $send_mail_on eq 'on'}
<span id="send_msg"><img src="images/top_loader.gif" width="16" height="16" alt="{$lang.loading}" style="vertical-align: middle" /> {$lang.email_sending}</span>
<a href="javascript:;" onClick="Javascript:switcher()" id="lnkSwitch" style="margin-right:10px;color: #FF9900;text-decoration: underline">{$lang.pause}</a>
{/if}
<a href="../_creat_index.php" target="main-frame" class="fix-submenu">生成静态首页</a>
<a href="index.php?act=clear_cache" target="main-frame" class="fix-submenu">{$lang.clear_cache}</a>
<a href="privilege.php?act=logout" target="_top" class="fix-submenu">{$lang.signout}</a>
</div>
增加生成静态页的后台操作链接二、前台增加生成html的php文件_creat_index.php
<?php
define('IN_ECS', true);
define('INIT_NO_USERS', true);
define('INIT_NO_SMARTY', true);
require(dirname(__FILE__) . '/includes/init.php');
$site_url = rtrim($ecs->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! <a href="<?php echo $site_url; ?>" target="_blank">go to index</a>
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop商品分类编辑方法教程
1.1 分类名称:新建一个分类之后在左侧会出现这个分类的名称。无论是几级分类都会显示,二级分类会比 分类缩进2个字符的距离, 分类也是如此。 -
ecshop商品页显示供应商/供货商名称的方法
好久没写文章了,隐约记得前几天有人问到这个问题:【如何在ecshop商品详情页面显示该商品的供货商?】 -
ecshop商城后台订单选择加入商品时提示库存不足的修改方法
ECSHOP后台订单加入商品时提示库存不足请重新选择的错误问题,ECSHOP商城所有版本包括很新ecshop4.1版本中都出现了这个bug官方未修复,原因是ecshop在ajax调用商品的时候 -
ecshop团购页的团购信息怎么实现自动调用商品描述详细
如果你想把ECSHOP团购页面的团购信息改成自动调用商品的详细信息,可以按照以下简单步骤修改打开lib_goods.php找到group_buy_info函数修改(1024行左右加):
留言与评论 (共有 条评论) |