and more renaming

This commit is contained in:
Administrator
2024-08-09 04:03:53 +00:00
parent 9f5a96adc0
commit 849e6b92a5
17 changed files with 4 additions and 4 deletions

12
Resources/nginx.html Normal file
View File

@ -0,0 +1,12 @@
location /web/www/errors {
rewrite ^/web/www/errors/(.*)$ /web/www/index.php?error=$1 break;
}
location /web/www/ {
if ($remote_addr !~ "^127\.0\.0\.1"){
rewrite ^/web/www/(.+)$ /web/www/indexParser.php?local=false&url=$1 break;
}
if (!-e $request_filename){
rewrite ^/web/www/(.+)$ /web/www/indexParser.php?missing=true&url=$1 [QSA,L]";;
}
}