.htaccess 171 B

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