Emlog不同域名访问不同模版
在根目录的index.php简单添加代码:
$templet=Option::get('nonce_templet'); $the_host = $_SERVER['HTTP_HOST']; if ($the_host=='blog.a5vip.com') {////判断域名或者修改浏览器UA使用不同的前台模板 $templet='hao';//前台模板名 } define('TEMPLATE_URL', TPLS_URL.$templet.'/'); define('TEMPLATE_PATH', TPLS_PATH.$templet.'/'); //define('TEMPLATE_PATH', TPLS_PATH.Option::get('nonce_templet').'/');//前台模板路径
发表评论