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.

12 lines
286B

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