You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 line
268 B

  1. SetEnv APPLICATION_ENV dev
  2. Options +FollowSymLinks
  3. IndexIgnore */*
  4. RewriteEngine on
  5. # if a directory or a file exists, use it directly
  6. RewriteCond %{REQUEST_FILENAME} !-f
  7. RewriteCond %{REQUEST_FILENAME} !-d
  8. # otherwise forward it to index.php
  9. RewriteRule . index.php