summaryrefslogtreecommitdiff
path: root/public/.htaccess
blob: 21a35c98d8172bdf4dcda45d3510fe7c2a0b6e54 (plain)
1
2
3
4
5
6
7
8
9
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>