帝国cms Apache .htaccess伪静态规则
以下都默认的Rewrite规则设置
# 打开RewriteEngine RewriteEngine On #首页伪静态 RewriteRule ^index\.html$ index.php #信息列表页 RewriteRule ^listinfo-([0-9]{1,})-([0-9]{1,})\.html$ /e/action/ListInfo/index.php?classid=$1&page=$2 #信息内容页 RewriteRule ^showinfo-([0-9]{1,})-([0-9]{1,})-([0-9]{1,})\.html$ /e/action/ShowInfo.php?classid=$1&id=$2&page=$3 #标题分类列表页 RewriteRule ^infotype-([0-9]{1,})-([0-9]{1,})\.html$ /e/action/InfoType/index.php?ttid=$1&page=$2 #TAGS信息列表页 RewriteRule ^tags-([0-9]{1,})-([0-9]{1,})\.html$ /e/tags/index.php?tagname=$1&page=$2
使用方法:
将以上规则保存为.htaccess文件,并上传到网站根目录。
然后进入后台,设置对应页面为动态模式。