.htaccess 267 B

123456789
  1. <IfModule mod_rewrite.c>
  2. Options -MultiViews
  3. RewriteEngine On
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteRule ^ index.php [L]
  6. # The previous redirection doesn't work on MAMP. Use next line instead
  7. #RewriteRule ^ web/index.php [L]
  8. </IfModule>