nginx反向代理和rewrite进行解决跨域问题、去掉url中的一部分字符串,通过nginx正则生成新的url

来源:互联网 发布:信息工程研究所 知乎 编辑:程序博客网 时间:2024/06/07 02:57

场景:表面上访问的是http://127.0.0.1:7777/test/xhtml//tpl/app-tpl-webapp/css/base.css,

实际上看的是http://127.0.0.1:8888/tpl/app-tpl-webapp/css/base.css的内容。


server {

listen 7777;
server_name 127.0.0.1;

location ^~ /website-webapp {
            proxy_pass http://127.0.0.1:8888;
        }

        location ^~ /app-tpl-webapp {
            proxy_pass http://127.0.0.1:8888;
        }

location ^~ /tpl {
            proxy_pass http://127.0.0.1:8888;
        }
 
location ~ .*/tpl/ {
   #alias E:/UCMSServer/tomcat/webapps/tpl/;
                    #index  index.shtml index.html index.htm;
        
rewrite ^/(.*)/tpl/(.*)$ http://127.0.0.1:7777/tpl/$2;       #其中$2表示的是正则中的第二串
}

        location ^~ /preview {
            proxy_pass http://127.0.0.1:8888;
        } 

}


以下方式是正则匹配以mp4结尾的方式

location ~ \.mp4$ {
   root /data;
   mp4;
                mp4_buffer_size       1m;
                mp4_max_buffer_size   500m;
   }

0 0
原创粉丝点击