Location Matching in Nginx
From the Nginx cheat sheet ยท Location Blocks & Rewrites ยท verified Jul 2026
Location Matching
Different types of location matching
nginx
# Exact match
location = /exact {
# Only matches /exact
}
# Prefix match
location /prefix {
# Matches /prefix, /prefix/path, etc.
}
# Regex match
location ~ \.php$ {
# Case-sensitive regex
}
# Regex case-insensitive
location ~* \.(jpg|jpeg|png)$ {
# Case-insensitive regex
}๐ฏ Exact match (=) has highest priority
๐ Regex locations are evaluated in order
๐ Use ^~ to prevent regex matching
โก Order matters for regex locations