Browse Source

Simple .htaccess file to get it working

pull/24/head
Pelle Wessman 8 years ago
parent
commit
723c7aa8ed
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      public/.htaccess

+ 10
- 0
public/.htaccess View File

@ -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