.htaccess 296 B

123456789101112
  1. <IfModule mod_rewrite.c>
  2. Options -MultiViews
  3. RewriteEngine On
  4. # Redirect Trailing Slashes...
  5. RewriteRule ^(.*)/$ /$1 [L,R=301]
  6. # Handle Front Controller...
  7. RewriteCond %{REQUEST_FILENAME} !-d
  8. RewriteCond %{REQUEST_FILENAME} !-f
  9. RewriteRule ^ index.php [L]
  10. </IfModule>