.htaccess 184 B

12345678
  1. <IfModule mod_rewrite.c>
  2. Options -MultiViews
  3. RewriteEngine On
  4. #RewriteBase /path/to/app
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteRule ^ index.php [L]
  7. </IfModule>