diff --git a/.htaccess b/.htaccess index 6ad16ee..baee690 100644 --- a/.htaccess +++ b/.htaccess @@ -2,13 +2,15 @@ # # LoadModule rewrite_module modules/mod_rewrite.so # # AllowOverride All RewriteEngine On +# RewriteCond $1 !^(.well-known) RewriteRule ^(.*) index.php?/$1 [L] ###----------------------------------- -# # nginx -# rewrite ^(.*) /index.php?/$1 last; +### nginx +# #################rewrite ^(.*) /index.php?/$1 last; +# rewrite ^/(?!.well-known)(.*)$ /index.php?/$1 last; # -# # caddy +### caddy # rewrite { # to index.php?/$1 # }