发布于2020年9月23日2020年10月2日 由赵, 三宝nginx下root和alias的区别 location ^~ /static/ { root /html/static/; } 请求的时候实际路径为:/html/static/static/ location ^~ /static/ { alias /html/static/; } 请求时候的实际路径为:/html/static/ 重要:alias时候,路径最后必须跟“/”