ロケーションディレクティブはどの順序で実行されますか?
ロケーションディレクティブはどの順序で実行されますか?
回答:
以下からのHTTPコアモジュールのドキュメント:
ドキュメントの例:
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 ]
}
それでも混乱する場合は、ここでより長い説明を示します。
/
と/documents/
ルールの両方がリクエスト/documents/index.html
に一致することに注意してください。ただし、最も長いルールであるため、後者のルールが優先されます。
現在、ロケーション優先度用の便利なオンラインテストツールがあります:
オンラインでのロケーション優先度テスト