This commit is contained in:
BingoKingo
2020-09-07 22:27:27 +08:00
parent 292a2ce027
commit 5c372e6e6a
52 changed files with 27445 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# # 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;
#
### caddy
# rewrite {
# to index.php?/$1
# }
###-----------------------------------