Browse Source

Merge pull request #24 from voxpelli/htaccess

Simple .htaccess file to get it working on Apache
pull/30/head
Aaron Parecki 8 years ago
parent
commit
24d72bf4be
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