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