Nginx 配置中 root 和 alias 的区别

最近有个seo优化的问题,需要加一些 sitemap.xml 文件,通过 nginx 配置实现,遇到了 root 和 alias 两种写法,记录一下两个的区别。

root和alias都可以定义在location模块中,都是用来指定请求资源的真实路径,比如:

        location = /test {
                root /home/nginx/nginx/html;
        }

请求 http://xxxxxx/test/a.html 这个地址时,那么在服务器里面对应的真正的资源是 /home/nginx/nginx/html/test/a.html 文件

注意:真实的路径是root指定的值加上location指定的值 。

而 alias 正如其名,alias指定的路径是location的别名,不管location的值怎么写,资源的 真实路径都是 alias 指定的路径 ,比如:

        location = /test {
                alias /home/nginx/nginx/html/;
        }

同样请求 http://xxxxx/test/a.html 时,在服务器查找的资源路径是: /home/nginx/nginx/html/a.html

其他区别:
1、 alias 只能作用在location中,而root可以存在server、http和location中。
2、alias 后面必须要用 “/” 结束,否则会找不到文件,而 root 则对 ”/” 可有可无。

你可能感兴趣的:(Nginx 配置中 root 和 alias 的区别)