.htaccess 192 B

123456789
  1. <IfModule rewrite_module>
  2. Options +FollowSymLinks
  3. IndexIgnore */*
  4. RewriteEngine On
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. RewriteRule . index.php
  8. </IfModule>