http://localhost/action
http://localhost/action/pre/xx/xx
所有action介面交給tomcat處理, 但為了能同時存取上面的兩個URL, 我配置了下面兩個location段, 總覺得這種配置方式不是很優雅, 請教大神有什麼更好的方法,不甚感激!
location ~ ^/(action)/?$ {
proxy_pass http://tomcats;
}
location ~ ^/(action)/(.+)$ {
proxy_pass http://tomcats;
}