码迷,mamicode.com
首页 > Web开发 > 详细

nginx url自动加斜杠问题

时间:2019-08-08 13:19:22      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:错误   返回   autoindex   http   定向   product   index   默认   第一个   

一、首先对比说明Nginx以下两个现象:

1. 访问的uri最后带斜杠

  http://localhost/product/    >>>>  查找 product下的index页面,存在就返回;不存在且未开启自动索引目录选项(指令是:autoindex on),则报403错误

2. 访问的uri最后不带斜杠

  http://localhost/product     >>>>  查找product文件,存在就返回;若存在product的文件夹,会产生301跳转,且自动将uri补全为http://localhost/product/ ,跳转的域名由server_name_in_redirect 指令控制(下文介绍)

二、server_name_in_redirect 指令配置

1、server_name_in_redirect on ,URL 重定向为: server_name 中的第一个域名 + 目录名 + /;例如 配置文件中 server_name  www.baidu.com;  则http://localhost/product   时会重定向到http://www.baidu.com/product/(这是个坑)
2、server_name_in_redirect off (默认值)URL 重定向为: 原 URL 中的域名 + 目录名 + /。

 

nginx url自动加斜杠问题

标签:错误   返回   autoindex   http   定向   product   index   默认   第一个   

原文地址:https://www.cnblogs.com/jedi1995/p/11320357.html

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