评论

收藏

[Nginx] nginx 伪静态化rewrite规则

web服务器 web服务器 发布于:2021-08-23 12:48 | 阅读数:299 | 评论:0

代码如下:
location / { 
###以下为PHPCMS 伪静态化rewrite规则 
rewrite ^(.*)show-([0-9]+)-([0-9]+)\.html$ $1/show.php?itemid=$2&page=$3; 
rewrite ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1/list.php?catid=$2&page=$3; 
rewrite ^(.*)show-([0-9]+)\.html$ $1/show.php?specialid=$2; 

####以下为PHPWind 伪静态化rewrite规则 
rewrite ^(.*)-htm-(.*)$ $1.php?$2 last; 
rewrite ^(.*)/simple/([a-z0-9\_]+\.html)$ $1/simple/index.php?$2 last; 
}
本文出自 “linux进阶屋” 博客
关注下面的标签,发现更多相似文章