nginx配置URL截取配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx配置URL截取配置相关的知识,希望对你有一定的参考价值。

需求是http://IP/XXX/dist/index.html的URL中XXX为任意字符都转发到http://IP/dist/index.html

location ~ ^/(.)/dist/(.*)$ {

rewrite /(.)/dist/(.)$ /dist/$2 break;
proxy_pass http://$switch;
access_log /alidata1/logs/nginx/localhost_dist_access.log ZAWEB;

以上是关于nginx配置URL截取配置的主要内容,如果未能解决你的问题,请参考以下文章

nginx配置反向代理

Nginx配置显示http完整的请求URL

Nginx 设置项目配置文件不可 URL 访问

Nginx 设置项目配置文件不可 URL 访问

阿里云slb+nginx配置curl无法获取url问题小记

nginx rewrite url重写, if,负载均衡 ,nginx反向代理配置