nginx訪問目錄是沒加/的重定向控制


static 模塊提供了root與alias功能;發現目標是目錄時;但URI末尾未加/時;會返回301重定向;重定向后會加/

指令

 

Syntax: server_name_in_redirect on | off;# 控制返回那個域名
Default: server_name_in_redirect off; 
Context: http, server, location
Syntax: port_in_redirect on | off;  #控制返回的端口
Default: port_in_redirect on; 
Context: http, server, location
Syntax: absolute_redirect on | off;  #返回重定向時時否添域名,默認是會添域名
Default: absolute_redirect on; 
Context: http, server, location

  

配置

[root@python vhast]# cat dir.conf 
server {
	server_name www.dir.com fwe.dir.com;  #第一個為主域名;第二個為輔助域名
	server_name_in_redirect off;
	listen 8088;
	absolute_redirect off;
	root html/;
}

  測試

[root@python vhast]# curl www.dir.com:8088/first -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.15.9
Date: Wed, 10 Jul 2019 10:30:04 GMT
Content-Type: text/html
Content-Length: 169
Connection: keep-alive
Location: /first/

  修改配置

server {
	server_name www.dir.com fwe.dir.com;
	server_name_in_redirect off;
	listen 8088;
	#absolute_redirect off;
	root html/;
}

  測試

[root@python vhast]# curl www.dir.com:8088/first -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.15.9
Date: Wed, 10 Jul 2019 10:31:21 GMT
Content-Type: text/html
Content-Length: 169
Location: http://www.dir.com:8088/first/
Connection: keep-alive

  測試加主機名

root@python vhast]# curl -H "Host:aaa" localhost:8088/first -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.15.9
Date: Wed, 10 Jul 2019 10:34:36 GMT
Content-Type: text/html
Content-Length: 169
Location: http://aaa:8088/first/
Connection: keep-alive

  修改配置

[root@python vhast]# cat dir.conf 
server {
	server_name www.dir.com fwe.dir.com;
	server_name_in_redirect on;  #表示修改為主域名在返回的URI里
	listen 8088;
	#absolute_redirect off;
	root html/;
}

  測試

[root@python vhast]# curl -H "Host:aaa" localhost:8088/first -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.15.9
Date: Wed, 10 Jul 2019 10:36:46 GMT
Content-Type: text/html
Content-Length: 169
Location: http://www.dir.com:8088/first/
Connection: keep-alive

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM