From 723c7aa8eddf52572d8c4b65d98e0fc14f9e8868 Mon Sep 17 00:00:00 2001 From: Pelle Wessman Date: Mon, 27 Jul 2015 18:44:11 +0200 Subject: [PATCH] Simple .htaccess file to get it working --- public/.htaccess | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 public/.htaccess diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..21a35c9 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,10 @@ + + RewriteEngine on + + RewriteBase / + + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} !=/favicon.ico + RewriteRule ^ index.php [L] +