帝国CMS标签伪静态教程
帝国CMS是一款非常流行的PHP内容管理系统,它提供了丰富的功能和灵活的扩展性。在帝国CMS中,tags标签是一种常用的功能,它可以帮助我们更好地组织和管理网站的内容。为了实现tags标签的伪静态,我们需要进行一些设置。首先,打开帝国CMS后台管理系统,找到“系统”菜单下的“系统参数设置”选项。然后,在“系统参数设置”页面中找到“URL规则设置”,将其中的“动态页后缀名”设置为“.html”。最后,点击“确定”按钮保存设置即可。这样,我们就完成了帝国CMS tags标签的伪静态设置。
帝国tags伪静态链接修改代码
最后伪静态链接为:/tag/xxx.html
<?$a=$navinfor[infotags];$str=str_replace(',',',',$a);$tag='';$t=explode(",",$str);for($i=0;$i<count($t);$i++){if($t[$i]){$tid=$empire->fetch1("selecttagid,pathfrom{$dbtbpre}enewstagswheretagname='$t[$i]'limit1");$tag.="<aclass='blue'href='/tag/$tid[path].html'target='_blank'>".$t[$i]."</a>";}}echo$tag;?>
httpd.conf伪静态规则
RegistrationName=LongshuiChenRegistrationCode=7Z3NU-7MAP5-JZDPH-PR9GK[ISAPI_Rewrite]CacheClockRate3600RepeatLimit32RewriteRule^(.*)/tag/(.+)_([0-9]+).html$$1/e/tags/?path=$2&tempid=11&page=$3[I]RewriteRule^(.*)/tag/(.+).html$$1/e/tags/?path=$2&tempid=11[I]
httpd.conf伪静态规则
RegistrationName=LongshuiChenRegistrationCode=7Z3NU-7MAP5-JZDPH-PR9GK[ISAPI_Rewrite]CacheClockRate3600RepeatLimit32RewriteRule^(.*)/tag/(.+)_([0-9]+).html$$1/e/tags/?path=$2&tempid=11&page=$3[I]RewriteRule^(.*)/tag/(.+).html$$1/e/tags/?path=$2&tempid=11[I]