nginx的location写法中实现模糊匹配

如下规则将匹配以/test开头的url,如http://ip:port/test.html,http://ip:port/test2.php等

 location ~ /test {
    	root /u01/soft/UCMSServer/tomcat/webapps;
    }