前言:
Nginx网站架构实战——01、Nginx介绍及编译安装:传送门
Nginx网站架构实战——02、Nginx信号量:传送门
Nginx网站架构实战——03、nginx虚拟主机配置:传送门
Nginx网站架构实战——04、nginx日志管理:传送门
Nginx网站架构实战——05、nginx定时任务完成日志切割:传送门
Nginx网站架构实战——06、Location详解之精准匹配:传送门
Nginx网站架构实战——07、Location之正则匹配:传送门
Nginx网站架构实战——08、nginx Rewrite语法详解:传送门
Nginx网站架构实战——09、编译PHP并与nginx整合:传送门
Nginx网站架构实战——10、安装ecshop:传送门
设置一个没有的页面跳转到指定页面
[root@tiejiang ecshop]# cd /usr/local/nginx/ [root@tiejiang nginx]# vim conf/nginx.conf location /ecshop{ root html; rewrite "goods-(/d{1,7})/.html" goods.php?id=$1; }
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/54264.html