东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国TAGS标签伪静态调用+伪静态规则教程

2017-09-10 站长 站长日志

帝国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

文章评论