location [ = | ~ | ~* | ^~ ] uri { ... }express
############url
- '=': 跟url徹底相同。
- '^~'或者什麼都沒有是表明:the whole request uri or only the beginning part of it.
- '~' or '~', the uri part in the directive is a regular expression, with operator ~ for case sensitive match and operator ~ for case insensitive match.