.htaccess 421B

123456789101112131415
  1. DirectoryIndex index.php
  2. Options +FollowSymlinks
  3. RewriteEngine on
  4. # RewriteCond %{HTTP_HOST} !^www\.
  5. # RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
  6. RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
  7. RewriteCond %{REQUEST_FILENAME} !-f
  8. RewriteCond %{REQUEST_FILENAME} !-d
  9. RewriteRule ^(.*)$ index.php?/$1 [L]
  10. # RedirectMatch ^/$ /portal/login/iniciar_sesion
  11. # php_value max_input_vars 5000