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