diff --git a/.htaccess b/.htaccess index 7444332..45b9c2a 100644 --- a/.htaccess +++ b/.htaccess @@ -1,2 +1,13 @@ +# apache RewriteEngine On RewriteRule ^(.*) index.php?/$1 [L] + +#----------------------------------- +# nginx +# rewrite ^(.*) index.php?/$1 last; + +# caddy (not sure) +# rewrite { +# to /index.php?/$1 +# } +#-----------------------------------