帝国cms读取远程页面错误(帝国cms读取远程页面不显示)
1、打开标签后端--模板--标签--标签管理--修改(选择对应标签)--打开
2、读取远程页面(readhttp) [readhttp]'http://127.0.0.1/bbs//incfile/head.html'[/readhttp] 可以从本站但是一定要写绝对路径
参考文件标签(includefile)
include自定义页面方法:(自定义页面添加在后台'栏目'自定义页面'中)
有两种方法可以包含自定义页面(userpage.html 位于根目录中):
第一种:当页面生成.html文件时,
该模板使用?php include(ECMS_PATH.'userpage.html');
或[includefile]'././page1.html''[/includefile]
或?php require(ECMS_PATH.'userpage.html');
调用文件。
第二种:页面生成.shtml文件,使用!--#include file='/userpage.html'--调用该文件。
尖端:
1、自定义页面存放目录说明:
?php include(ECMS_PATH.'userpage.html');并且!--#include file='/userpage.html'--上面的例子是基于生成自定义页面到根目录的。您也可以单独创建它。自定义页面存放目录,例如:/incpage/目录,模板include使用:
?php include(ECMS_PATH.'/incpage/userpage.html');用!--#include file='/incpage/userpage.html'--2.自定义页面可以设置生成定义,从而可以实时更新生成文件内容:
在后台“系统”“计划任务”“管理刷新任务”中添加计划刷新自定义页面。
3、如何在不同栏目引用不同的自定义页面?
(1).添加根据列ID命名的自定义页面,例如:/incpage/userpage1.html(1为列ID)
(2) 在模板中使用包含文件:
?php include(ECMS_PATH.'/incpage/userpage'.$GLOBALS[navclassid].'.html');或
?php require(ECMS_PATH.'/incpage/userpage'.$GLOBALS[navclassid].'.html');或
!--#include file='/incpage/userpage?=$GLOBALS[navclassid]?html'--