[nginx] Use try_files instead of if for /.well-known/.

See https://www.nginx.com/resources/wiki/start/topics/depth/ifisevil/
This commit is contained in:
Andreas Neustifter 2018-06-28 04:43:33 +00:00
parent f44cb1ccce
commit 79a8320fed
1 changed files with 1 additions and 3 deletions

View File

@ -93,9 +93,7 @@ server {
# by denying dot files and rewrite request to the front controller
location ^~ /.well-known/ {
allow all;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?pagename=$1;
}
try_files $uri /index.php?pagename=$uri&$args;
}
include mime.types;