diff options
| -rw-r--r-- | public/.htaccess | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..21a35c9 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,10 @@ +<IfModule mod_rewrite.c> +  RewriteEngine on + +  RewriteBase / + +  RewriteCond %{REQUEST_FILENAME} !-f +  RewriteCond %{REQUEST_FILENAME} !-d +  RewriteCond %{REQUEST_URI} !=/favicon.ico +  RewriteRule ^ index.php [L] +</IfModule>  | 
