我想更改请求的 URL,但浏览器地址不应更改。为了实现此目的,我尝试了以下配置:
location /my-website {
proxy_pass http://tomcat/my-website;
}
location =/my-website {
rewrite /my-website$(.*) $1/my-website/mypage/index.html last;
}
这样做虽然请求确实得到了正确的地址,但浏览器的地址栏也会发生变化。
也尝试过;
location /my-website {
proxy_pass http://tomcat;
rewrite /my-website$(.*) $1/my-website/page/index.html break;
}
关于改进此配置有什么建议吗?
预期输出
地址栏:协议://localhost/我的网站
实际的:协议://localhost/我的网站/页面
电流输出
地址栏:协议://localhost/我的网站/页面
实际的:协议://localhost/我的网站/页面
尝试过的事情:
- https://www.claudiokuenzler.com/blog/436/nginx-rewrite-url-examples-with-without-redirect-address#.W3_a6M4zaUk
- https://stackoverflow.com/questions/15322826/nginx-rewrite-without-change-url
编辑
上述问题出现在 302 重定向中。其他情况下,url 会更改,但浏览器地址不会更改。我使用以下配置处理后一种情况:
location /my-website {
proxy_pass http://tomcat;
rewrite ^(.*)my-website/src(.*)$ $1my-website/page/src$2 break;
}
即该位置后面跟着 /src 并且它可以工作。
在 302 情况下,位置只是 my-website/,并且上述尝试失败。
我的文件配置:
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"'
'"$upstream_http_location"';
rewrite_log on;
#log_format graylog2_format '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_for" <msec=$msec|connection=$connection|connection_requests=$connection_requests|millis=$request_time>';
error_log logs/error.log warn;
sendfile on;
keepalive_timeout 65;
map $http_user_agent $ua_redirect {
default 'abc';
}
upstream docker-mysite {
server localhost:9012;
}
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 900;
client_max_body_size 0;
server {
listen 80;
access_log logs/host.access.log main;
#below config works
location /mysite {
proxy_pass http://docker-mysite;
rewrite ^(.*)mysite/src(.*)$ $1mysite/$ua_redirect/src$2 break;
}
#below config works but modifies the browser url hence the issue
location = /mysite {
proxy_pass http://docker-mysite;
rewrite /mysite(.*)$ /mysite/$ua_redirect$1 break;
}
}
}
日志
127.0.0.1 - - [03/Sep/2018:11:46:07 +0500] "GET /mysite/login?code=token HTTP/1.1" 302 0 "http://localhost/loginapp/web/index.html" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36" "-"http://localhost/mysite/abc
127.0.0.1 - - [03/Sep/2018:11:46:07 +0500] "GET /mysite/abc HTTP/1.1" 404 0 "http://localhost/loginapp/web/index.html" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36" "-"-
答案1
您的重写逻辑没有问题,因为它在正常情况下可以正常工作。浏览器 URL 会因 302 重定向而发生变化,因为rewrite
指令只会更改请求 URI,而不会更改请求的响应。
典型的 302 响应如下所示:
HTTP/1.1 302 Found
Location: http://overrideurlrewriting.com
Location
302 响应中的标头强制浏览器遵循提到的 URL。
可能的解决方案是使用指令修改Location
代理响应的标头(在 302 重定向的情况下)proxy_redirect
有用的网址:
https://stackoverflow.com/a/26025618/2073920
http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_redirect
答案2
尝试这个:
location /my-website {
proxy_pass http://tomcat;
rewrite /my-website(.*)$ $1/my-website/page/index.html break;
}
我认为您$
的正则表达式中有一个不合适的位置 - 它应该位于正则表达式的末尾。我无法确切地说出您的意图,但您可能还想更改重写目标,以便除以下页面之外的页面也index.html
能正常工作:
location /my-website {
proxy_pass http://tomcat:8000;
rewrite /my-website(.*)$ /my-website/page$1 break;
}