Nginx之伪404( root与alias )
目录
一、现象
二、root与alias的区别
三、建议
四、写在最后
一、现象
二、root与alias
location /demo/ { root /test/; }
当浏览器访问:http://127.0.0.1/demo/index.html时,映射到服务器上的文件为:/test/demo/index.html
location /demo/ { alias /test/; }
三、建议
四、写在最后
一、现象
二、root与alias的区别
三、建议
四、写在最后
location /demo/ { root /test/; }
当浏览器访问:http://127.0.0.1/demo/index.html时,映射到服务器上的文件为:/test/demo/index.html
location /demo/ { alias /test/; }