码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx之alias path 与root配置段的区别

时间:2018-01-23 10:56:01      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:dir   content   url   har   跳转   主机   com   for   path   

alias path 与root配置段的区别

alias 适用于:location

定义路径别名,文档映射的一种机制。


在httpd中的

alias /bbs/ /lufei/root/ 示例

访问:http://www.lufei.com/bbs/index.html

实际访问:http://www.lufei.com/lufei/root/index.html

这个是以/bbs/为根。

在nginx中的示例:

location /bbs/ {

alias /lufei/root/;

}


访问:http://www.lufei.com/bbs/index.html

实际访问:http://www.lufei.com/lufei/root/index.html

这个是以/bbs/为根。

实际是将/bbs/ 换为/web/forum/,其中/web/forum/为系统中真实存在的目录,/bbs/为虚拟的目录


另一种配置root的方法:

location /bbs/ {

root /lufei/root/;

}

访问:http://www.lufei.com/bbs/index.html

实际访问:http://www.lufei.com/lufei/root/bbs/index.html

这个是以root为根。

注意:bbs/index.html 为uri。

alias指令:给定的路径对应于location中的/uri/后面的右侧的/;

root指令:给定的路径对应于location中的/uri/左侧的/;

示例演示:

root路径方法:

01、mkdir -p /lufei/root/bbs/    创建网页目录

02、vim index.html 创建一个html文件

<html>  

<head>  

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  

</head>  

<body>  

<h2>基于域名的虚拟主机-lufei-bbs-root</h2>

<h3>www.lufei-root.com</h3>

</body>  

</html>

03、在/etc/nginx/conf.d/目录下创建一个conf配置文件

vim root.conf

server {

listen 80;

server_name www.lufei.com;

location /bbs/ {

root    /lufei/root/;

#root yuming;

# 默认跳转到index.html页面    

index index.html;

}

}

04、nginx -s reload

05、访问:

[root@localhost bbs]# curl www.lufei.com/bbs/

<html>  

<head>  

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  

</head>  

<body>  

<h2>基于域名的虚拟主机-lufei-bbs-root</h2>

<h3>www.lufei-root.com</h3>

</body>  

</html>

alias路径方法:

01、mkdir -p /nginx/bbs/    创建网页目录

02、vim index.html 创建一个html文件

<html>  

<head>  

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  

</head>  

<body>  

<h2>基于域名的虚拟主机-lufei-bbs-alias</h2>

<h3>www.lufei-alias.com</h3>

</body>  

</html>

03、在/etc/nginx/conf.d/目录下创建一个conf配置文件

vim alias.conf

server {

listen 80;

server_name www.lufei.com;

location /bbs/ {

alias    /nginx/bbs/;

# 默认跳转到index.html页面    

index index.html;

}

}

04、nginx -s reload

05、访问:

[root@localhost bbs]# curl www.lufei.com/bbs/

<html>  

<head>  

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  

</head>  

<body>  

<h2>基于域名的虚拟主机-lufei-bbs-alias</h2>

<h3>www.lufei-alias.com</h3>

</body>  

</html>


Nginx之alias path 与root配置段的区别

标签:dir   content   url   har   跳转   主机   com   for   path   

原文地址:http://blog.51cto.com/8248183/2064103

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!