Thứ tự nào chỉ thị vị trí cháy trong?
Thứ tự nào chỉ thị vị trí cháy trong?
Câu trả lời:
Từ các tài liệu mô-đun lõi HTTP :
Ví dụ từ tài liệu:
location = / {
# matches the query / only.
[ configuration A ]
}
location / {
# matches any query, since all queries begin with /, but regular
# expressions and any longer conventional blocks will be
# matched first.
[ configuration B ]
}
location /documents/ {
# matches any query beginning with /documents/ and continues searching,
# so regular expressions will be checked. This will be matched only if
# regular expressions don't find a match.
[ configuration C ]
}
location ^~ /images/ {
# matches any query beginning with /images/ and halts searching,
# so regular expressions will not be checked.
[ configuration D ]
}
location ~* \.(gif|jpg|jpeg)$ {
# matches any request ending in gif, jpg, or jpeg. However, all
# requests to the /images/ directory will be handled by
# Configuration D.
[ configuration E ]
}
Nếu nó vẫn còn khó hiểu, đây là một lời giải thích dài hơn .
/
và /documents/
quy tắc khớp với yêu cầu /documents/index.html
, nhưng quy tắc sau được ưu tiên vì đó là quy tắc dài nhất.
Nó bắn theo thứ tự này.
=
(chính xác)
location = /path
^~
(trận đấu phía trước)
location ^~ /path
~
(trường hợp biểu hiện thông thường nhạy cảm)
location ~ /path/
~*
(trường hợp biểu hiện thông thường không nhạy cảm)
location ~* .(jpg|png|bmp)
/
location /path
Hiện tại có một công cụ kiểm tra trực tuyến tiện dụng để ưu tiên vị trí :
kiểm tra ưu tiên vị trí trực tuyến