.htaccess 327 B

12345678910111213
  1. <IfModule mod_rewrite.c>
  2. Options -MultiViews
  3. RewriteEngine On
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6. RewriteRule ^(.*)$ index.php [QSA,L]
  7. </IfModule>
  8. <IfModule !mod_rewrite.c>
  9. <IfModule mod_alias.c>
  10. RedirectMatch 302 ^/$ /index.php/
  11. </IfModule>
  12. </IfModule>