.htaccess 281 B

123456789101112
  1. Options FollowSymLinks
  2. <IfModule mod_rewrite.c>
  3. RewriteEngine on
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6. RewriteRule ^(.*)$ index.php?/$1 [L]
  7. </IfModule>
  8. <IfModule !mod_rewrite.c>
  9. ErrorDocument 404 /index.php
  10. </IfModule>