Nginx如何将带后缀的url进行匹配

客户要求的是以.xhtml为后缀的url,服务却没有后缀?
server {
listen 8080;

default_type 'text/html';
charset utf-8;
#匹配以IFCSI开头的后缀为.xhtml的url, $1为括号里面的内容,转到abc/$1,abc可任意替换,主要满足下面匹配
location / {
  rewrite '^/IFCSI/(.*)\.xhtml$' /abc/$1 last;
}
#转到本机其他端口服务
location /abc/ {
  proxy_pass http://localhost:8686/IFCSI/;
}

}

你可能感兴趣的:(Nginx如何将带后缀的url进行匹配)