liudaniel 2013-03-09
PHPCMSV9nginx伪静态规则
NND让我找的好累啊。搞了大半夜。
rewrite ^/show-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last; rewrite ^/content-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last; rewrite ^/list-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=lists&catid=$1&page=$2 last; rewrite ^/tag-([^\.]*)-([0-9]+)-([0-9]+).html /index.php?m=content&c=tag&catid=$2&tag=$1&page=$3 last; rewrite ^/comment-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=comment&c=index&a=init&commentid=content_$1-$2-$3 last; rewrite ^/([^\.]*).html /index.php?m=member&c=index&a=$1 last;
第一条
作用内容页展示
效果show-12-120-1.htmlshow-栏目id-文章id-页数.html
第二条
作用还是内容页展示
效果content-12-120-1.htmlcontent-栏目id-文章id-页数.html
第三条
作用列表页展示
效果list-12-2.htmlshow-栏目id-页数.html
第四条
作用关键词列表页展示
效果tag-%CA%B1%C9%D0%BC%D2%BE%D3%B7%BD%B0%B8-12-1.htmlshow-关键词-栏目id-页数.html
第五条
作用评论页展示
效果comment-12-120-1.htmlcomment-栏目id-文章id-页数.html
第六条
作用功能页展示
效果register.htmlregister.html
建议第六条不要用了纯粹把你的注册和登录伪静态化不如自己写静态页面的好吧?