如何在prestashop 1.6中创建没有数据库连接的静态平面html页面

时间:2018-02-04 11:50:21

标签: prestashop prestashop-1.6 prestashop-1.7

如何在prestashop 1.6中创建没有数据库连接的静态平面html页面 因为当流量很大时我不想要db错误,所以我想创建一个静态页面(我已经创建了-plane html页面),但是我需要在主页索引页面中显示它。如何在没有任何数据库连接的情况下执行此操作

1 个答案:

答案 0 :(得分:0)

我这样做了:

$url=$_SERVER['REQUEST_URI'];
if($url=="/"){
 include("home.php"); exit;
 header("Location:http://981.11.115.222/home_staticpage.php"); exit;
 }
require(dirname(__FILE__).'/config/config.inc.php');
Dispatcher::getInstance()->dispatch();

http://981.11.115.222/home_staticpage.php是我的静态页面