This commit is contained in:
BingoKingo
2020-04-04 15:35:39 +08:00
parent b7b1fd2886
commit 15654b1911
60 changed files with 22783 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
# }
#-----------------------------------