This commit is contained in:
BingoKingo
2020-05-01 13:59:59 +08:00
parent bca711533c
commit 8f05bde724
55 changed files with 16493 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# apache
# LoadModule rewrite_module modules/mod_rewrite.so
# AllowOverride All
RewriteEngine On
RewriteRule ^(.*) index.php?/$1 [L]
#-----------------------------------
# nginx
# rewrite ^(.*) /index.php?/$1 last;
#
# caddy
# rewrite {
# to index.php?/$1
# }
#-----------------------------------