博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx location + 正则表达式出现301错误
阅读量:2496 次
发布时间:2019-05-11

本文共 793 字,大约阅读时间需要 2 分钟。

之前在配置nginx location时总是遇到301错误,百思不得其解,关键是我没有用rewrite,但是我用了alias,因此怀疑是alias引起了301错误。
示例如下:
报错示例:
index index.html
location  /zzp/ {
            alias /data/nginx/zzp/exact/;
}
location ~ ^/zzp/ {
     alias /data/nginx/zzp/regex/;
}
修正后的示例:
location  /zzp/ {
            alias /data/nginx/zzp/exact/;
}
location ~ ^/zzp/(.*\.html)$ {
     alias /data/nginx/zzp/regex/$1;
}
解析:
If
  alias
 
is used inside a location defined with a regular expression then such regular expression should contain captures and
  alias
 
should refer to these captures (0.7.40)
上面的话来自nginx的文档,意思是,当nginx的location是一个正则表达式时,这个正则表达式应该包含capture,并且alias中要引用这些capture,也就是$1那个部分。
再深究为什么,在stackoverflow上面说是导致了内部重定向循环,但是没看懂。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29757574/viewspace-2147809/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/29757574/viewspace-2147809/

你可能感兴趣的文章
获取推送通知的DeviceToken
查看>>
Could not find a storyboard named 'Main' in bundle NSBundle
查看>>
CocoaPods安装和使用教程
查看>>
Beginning Auto Layout Tutorial
查看>>
block使用小结、在arc中使用block、如何防止循环引用
查看>>
iPhone开发学习笔记002——Xib设计UITableViewCell然后动态加载
查看>>
iOS开发中遇到的问题整理 (一)
查看>>
Swift code into Object-C 出现 ***-swift have not found this file 的问题
查看>>
为什么你的App介绍写得像一坨翔?
查看>>
RTImageAssets插件--@3x可自动生成@2x图片
查看>>
iOS开发的一些奇巧淫技
查看>>
常浏览的博客和网站
查看>>
Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.
查看>>
iOS在Xcode6中怎么创建OC category文件
查看>>
5、JavaWeb学习之基础篇—标签(自定义&JSTL)
查看>>
8、JavaWEB学习之基础篇—文件上传&下载
查看>>
reRender属性的使用
查看>>
href="javascript:void(0)"
查看>>
h:panelGrid、h:panelGroup标签学习
查看>>
f:facet标签 的用法
查看>>