nginx配置phpcms v9伪静态规则 phpcms伪静态 404 Not Found

location / { 
if (!-f $request_filename){ 
rewrite (.*) /index.php; 
} 
rewrite ^/caipu-([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; 
}

 以上规则有一些问题 ,请测试使用

 

下面是我自己写的:

 

 

可以正常使用

location / {
###以下为PHPCMS 伪静态化rewrite法则
rewrite ^/(.*)content-([0-9]+)-([0-9]+)-([0-9]+)\.html  /index.php?m=content&c=index&a=show&catid=$2&id=$3&page=$4;
rewrite ^/(.*)show-([0-9]+)-([0-9]+)-([0-9]+).html  /index.php?m=content&c=index&a=show&catid=$2&id=$3&page=$4;
rewrite ^/(.*)list-([0-9]+)-([0-9]+).html  /index.php?m=content&c=index&a=lists&catid=$2&page=$3;


}

  

 

 

 

 

文章来源 在线字典 www.zxzidian.com

 

posted @ 2019-08-01 17:46  八路逆袭寡妇村  阅读(2265)  评论(0编辑  收藏  举报
www.shiciyue.com