diff --git a/.htaccess b/.htaccess deleted file mode 100644 index 74586b8..0000000 --- a/.htaccess +++ /dev/null @@ -1,31 +0,0 @@ -# # Apache -# # LoadModule rewrite_module modules/mod_rewrite.so -# # AllowOverride All -RewriteEngine On -# RewriteCond $1 !^(.well-known) -RewriteRule ^(.*) index.php?/$1 [L] - -###----------------------------------- -### nginx -# rewrite ^/(?!.well-known)(.*)$ /index.php?/$1 last; -# -### nginx Subdirectory 在子目录中使用 -# location /OneManager2/ { -# rewrite ^/(.*)$ /OneManager2/index.php?/$1 last; -# } -# -### caddy -# rewrite { -# to index.php?/$1 -# } -# -### caddy2 Caddyfile -# @try_files { -# not path /.well-known/* -# file { -# try_files index.php -# } -# } -# rewrite @try_files {http.matchers.file.relative} -# -###-----------------------------------