您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程

帝国TAGS标签怎么设置伪静态调用和伪静态规则的方法

秋荷2023-05-18 20:20:09帝国CMS教程已有人查阅

导读帝国CMS灵动标签SQL调用TAGS标签代码,帝国CMS灵动标签伪静态规则.htaccess文件代码最后输出的伪静态地址为:http://127.0.0.1/tag/baoru.html

帝国CMS灵动标签SQL调用TAGS标签代码
<?php
$tsql=$empire->query("select * from {$dbtbpre}enewstags order by num desc");
while($tr=$empire->fetch($tsql)){
?>
<a href="/tag/<?=$tr['path']?>.html"  target="_blank"><?=$tr['tagname']?></a>
<?
}
?>
帝国CMS灵动标签伪静态规则
.htaccess文件代码
RewriteEngine On 
RewriteBase / 
RewriteRule ^(.*)tag/(.+)_([0-9]+).html$ $1/e/tags/?path=$2&tempid=11&page=$3 
RewriteRule ^(.*)tag/(.+).html$ $1/e/tags/?path=$2&tempid=11
最后输出的伪静态地址为:http://127.0.0.1/tag/baoru.html

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签