Nginx static and dynamic separation has no effect.

the system is windows server 2012, and the static and dynamic separation program configured in the integrated environment laragon,nginx does not go at all

clipboard.png

Mar.21,2021

1. The exact match will be the first to be processed. If an exact match is found, nginx stops searching for other matches.
normal character matching, regular expression rules and long block rules will be given priority to match with the query, that is, if the match also needs to see if there is a regular expression match and a longer match.
2.^ ~ then only this rule is matched, and nginx stops searching for other matches, otherwise nginx will continue to process other location instructions.
finally matches instructions with "~" and "~ *". If a corresponding match is found, nginx stops searching for other matches; when there is no regular expression or no regular expression is matched, then the verbatim matching instruction with the highest degree of matching will be used. Online regular matching does not support nginx rules.

Menu