php-censor/public/.htaccess.dist
Tobias van Beek 4240a65983 Add .htaccess example
Rename htaccess.example to .htaccess.dist

Following the recommendation

Close #544
2014-10-20 22:17:40 +02:00

8 lines
179 B
Plaintext

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