标签: nginx nginx-location nginx-config
对于不区分大小写的搜索,使用波浪号/星号修饰符将位置块设置为:
location ~* /RPNNode { root /usr/share/nginx/html; index index.html index.htm; }
然后,localhost / RPNNode根据需要提供网页,但是localhost / rpnnode失败,其他大写字母(RPNNODE,RpnNode等)也失败
如何指定位置块以允许不区分大小写的搜索?