In welcher Reihenfolge feuern Standortrichtlinien?
In welcher Reihenfolge feuern Standortrichtlinien?
Antworten:
Aus den Dokumenten des HTTP-Kernmoduls :
Beispiel aus der Dokumentation:
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 ]
}
Wenn es immer noch verwirrend ist, finden Sie hier eine längere Erklärung .
/
als auch /documents/
Regeln mit der Anforderung übereinstimmen. Die /documents/index.html
letztere Regel hat jedoch Vorrang, da sie die längste Regel ist.
Es wird in dieser Reihenfolge ausgelöst.
=
(genau)
location = /path
^~
(Vorwärtsspiel)
location ^~ /path
~
(Groß- und Kleinschreibung beachten)
location ~ /path/
~*
(Groß- und Kleinschreibung wird nicht berücksichtigt)
location ~* .(jpg|png|bmp)
/
location /path
Es gibt jetzt ein praktisches Online-Testtool für die Standortpriorität:
Online-Standortprioritätstests