欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx伪静态rewrite规则写法实例

程序员文章站 2022-04-21 12:27:24
...
在网站配置文件中www.huobo.cc.conf

.....

server_name www.huobo.cc;
index index.html index.htm index.php;
root /home/wwwroot/huobo;
......
在root 这行下面添加上 include huobo.cc.conf;

内容为:

location / {
rewrite ^/[a-zA-Z]+/([0-9]+)/vod\-([0-9]+)-([0-9]+)\.html$ /video/index.php?$1-$2-$3.html last;
}

这个规则是把http://www.huobo.cc/xiju/13239/vod-0-0.html重写到根目录下的/video文件夹中的index.php并带上参数

以上就介绍了nginx伪静态rewrite规则写法实例,包括了include方面的内容,希望对PHP教程有兴趣的朋友有所帮助。