From 4240a65983b370fe7398224956fe5d5fa9fbc37f Mon Sep 17 00:00:00 2001 From: Tobias van Beek Date: Mon, 20 Oct 2014 22:17:40 +0200 Subject: [PATCH] Add .htaccess example Rename htaccess.example to .htaccess.dist Following the recommendation Close #544 --- public/.htaccess.dist | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 public/.htaccess.dist diff --git a/public/.htaccess.dist b/public/.htaccess.dist new file mode 100644 index 00000000..ef528060 --- /dev/null +++ b/public/.htaccess.dist @@ -0,0 +1,7 @@ + + RewriteEngine On + RewriteBase / + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule . /index.php [L] +