欢迎来到代码驿站!

Nginx

当前位置:首页 > 服务器 > Nginx

nginx地址重定向的方法

时间:2021-05-08 09:07:16|栏目:Nginx|点击:

1、假设要把webroot/static/index.html访问重定向到static/index.html

例如当我们通过浏览器访问http://192.168.11.210/webroot/static/index.html,实际访问的是web目录下面的static/index.html文件,也及去掉了webroot这个目录,使用alias

location ^~ /webroot/ {
 alias /data/www/web/WebContent/;
}

注意:

1. 使用alias时,目录名后面一定要加"/"。

2. alias可以指定任何名称。

3. alias在使用正则匹配时,必须捕捉要匹配的内容并在指定的内容处使用。

4. alias只能位于location块中。[/warning]

http://192.168.11.210/webroot/test/static/index.html

location ^~ /webroot/test/ {
 alias /data/www/web/WebContent/;
}

这样也是可以的,最终访问的文件跟上面是一样的。

2、把对webroot/static/index.html的访问重定向到web目录下面的test目录下

location ~ ^/webroot/ {
 root /data/www/web/WebContent/test/;
}

http://192.168.11.210/webroot/static/index.html 实际访问的是web目录下testwebroot/static/index.html
及使用root一般是把访问目录重定向到某个目录下,但是访问的路径必须在重新定位的目录下

注意区分跟alias的区别

转载一个:

访问域名 

www.adc.com/image  自动跳转到  www.adc.com/make/image 

这个如何写

这种需求有多种方法可以实现:

1. 利用Nginx rewrite 内部跳转实现:

location /image {
     rewrite ^/image/(.*)$   /make/image/$1 last;
}

2.利用alias映射

location /image {
    alias /make/image; #这里写绝对路径
}

3.利用root映射:

location /image {
   root  /make;
}

4.利用nginx的permanent 301绝对跳转实现

location /image {
    rewrite ^/image/(.*)$  http://www.adc.com/make/image/$1;
}

5.判断uri实现

if ( $request_uri ~* ^(/image)){
    rewrite ^/image/(.*)$ /make/image/$1 last; 
}

上一篇:1分钟搞定Nginx版本的平滑升级与回滚的方法

栏    目:Nginx

下一篇:详解Nginx中基本的内存池初始化配置

本文标题:nginx地址重定向的方法

本文地址:http://www.codeinn.net/misctech/117273.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有