设置区分大小写方式:http://www.imooc.com/article/14190
Preferences -> Editor -> File Encodings -> 勾选【Transparent native-to-ascii conversion】
https://www.1deng.me/2017-best-domain-registrars.html
https://blog.csdn.net/neosmith/article/details/53131023
https://yq.aliyun.com/articles/11035
#--------proxy_pass配置---------------------
location /t1/ { proxy_pass http://servers; } #正常,不截断
location /t2/ { proxy_pass http://servers/; } #正常,截断
location /t3 { proxy_pass http://servers; } #正常,不截断
location /t4 { proxy_pass http://servers/; } #正常,截断
location /t5/ { proxy_pass http://servers/test/; } #正常,截断
location /t6/ { proxy_pass http://servers/test; } #缺"/",截断
location /t7 { proxy_pass http://servers/test/; } #含"//",截断
location /t8 { proxy_pass http://servers/test; } #正常,截断
#