Browse Source

Simple .htaccess file to get it working

pull/24/head
Pelle Wessman 9 years ago
parent
commit
723c7aa8ed
  1. 10
      public/.htaccess

10
public/.htaccess

@ -0,0 +1,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>
Loading…
Cancel
Save