Add .htaccess example

Rename htaccess.example to .htaccess.dist

Following the recommendation

Close #544
This commit is contained in:
Tobias van Beek 2014-10-20 22:17:40 +02:00
parent 48bb51267a
commit 4240a65983

7
public/.htaccess.dist Normal file
View file

@ -0,0 +1,7 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>