nginx不同路径映射不同域名或者不同地址或跳转
server {
listen 23132;
server_name www.yuming.yuming;
location / {
}
location /app {
alias "C:\phpstudy_pro\WWW\vue";
index index.html index.html;
}
location /getNews {
proxy_pass https://www.yuming.yuming:12345;
}
location /getProducts {
proxy_pass https://yuming.yuming:23131/app/grade/maxAll;
}
}
来自另一篇文章:------------------------
一、需求
假如,我们需要这样的代理,平时我们运行调试的时候,就在localhost的默认目录下的html里面就行。如果我们请求的路径含有指定的目录的时候,我们需要它去我们指定的域名和端口请求数据,而不是在本地请求。
比如,当请求http://localhost/extService/extService/wens001.do的时候,我们是想他远程访问地址是http://192.168.2.1:8080/extService/wens001.do,而不是在我们本地查找该文件。
二、解决办法1
打开你的nginx配置文件,比如我的地址:nginx-1.17.9\conf\nginx.conf。在原本的location下面添加一个如下代码的location
location ^~ /extService/ {
proxy_pass http://192.168.2.1:8080/extService/;
}
这样配置之后,后面的对/extService/请求,都会被转发到你配置的域名中去了。
^ 号表示开头匹配,以为我的开头就是根目录,所以,我加了仅仅限制开头的这种限制,防止其他的域名中间有该字符串,也会被转发的错误。
配置完成之后,大致代码如下,仅供参考
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
location ^~ /extService/ {
proxy_pass http://192.168.2.1:8080/extService/;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
三、解决办法2
你还可以使用下面的代码,这种,对转发的路径有要求,只能是域名和端口号。
location ~ /extService/ {
proxy_pass http://blog.test:8080;
}
proxy_pass的路径不能带有路径。它是匹配到该种路径,直接转发。
原文链接:https://blog.csdn.net/u013866352/article/details/105391668
---------------------跳转设置---------------------
server {
listen 80 ;
server_name www.yuming.work;
location /temp {
rewrite /(.*) http://baidu.com;
}
location /assets/file/ {
rewrite /(.*) https://vip.123pan.cn/1831559668/coshkimg/$1 permanent;
}
location ^~ /assets/file/ {
rewrite /(.*) https://vip.123pan.cn/1831559668/coshkimg/$1 redirect;
}
#状态为404则跳转:
error_page 404 /404.html;
location /404.html {
rewrite /(.*) http://liutingdong.cn$request_uri redirect;
}
默认分类 2022-05-10 20:21:58 通过 网页 浏览(879)
共有0条评论!