美文网首页
Nginx 的 location 配置

Nginx 的 location 配置

作者: Josaber | 来源:发表于2017-10-13 18:32 被阅读0次

    location [=|~|~*|^~] /uri/ { … }

    = 开头表示精确匹配
    ^~ 匹配url路径即可
    ~ 开头表示区分大小写的正则匹配
    ~* 开头表示不区分大小写的正则匹配
    !~!~* 分别为区分大小写不匹配及不区分大小写不匹配的正则
    / 通用匹配,任何请求都会匹配到

    相关文章

      网友评论

          本文标题:Nginx 的 location 配置

          本文链接:https://www.haomeiwen.com/subject/cvlzyxtx.html