location /images/ { root /static/; } 访问http://localhost:8888/images/1.jpg 实际对应/static/images/1.jpg 会把url拼到实际路径后边。 -------------------------- location /my/images/ { alias /static/imgs/; } 访问http://localhost:8888/my/images/1.jpg 实际对应/static/imgs/1.jpg alias会抛弃访问请求里的路径,使用alias的。 -------------------------- root的路径不能有中文,试了半天私活不好使。换个英文目录秒OK,气炸了。 location /my/images { alias F:/哈哈/images; } -------------------------- windows下,开俩cmd,一个nginx启动,另一个nginx -s stop退出。 或者任务管理器kill进程,麻烦。
|