有客的网站是帝国cms建立的,帝国cms伪静态规则,对于使用动态链接的朋友,效果非常好,可以缩短网站链接,更好的做网站排名优化。
将下面的内容复制到nginx或者apache的伪静态文件内,就可以在帝国cms后台开启伪静态访问了,开启之后,如果有历史记录,你还需要刷新下网站URL才可以。
Apache下伪静态
#首页伪静态 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
Nginx下伪静态
rewrite ^([^\.]*)/listinfo-([0-9]+)-([0-9]+)\.html$ $1/e/action/ListInfo/index.php?classid=$2&page=$3 last; rewrite ^([^\.]*)/showinfo-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/e/action/ShowInfo.php?classid=$2&id=$3&page=$4 last; rewrite ^([^\.]*)/infotype-([0-9]+)-([0-9]+)\.html$ $1/e/action/InfoType/index.php?ttid=$2&page=$3 last; rewrite ^([^\.]*)/tags-(.+?)-([0-9]+)\.html$ $1/e/tags/index.php?tagname=$2&page=$3 last; if (!-e $request_filename) { return 404; }