Mi problema es que
estoy tratando de remover el el index.php
de CodeIgniter y no logro hacerlo
Tengo activado el modulo en
httpd.conf
Código:
LoadModule rewrite_module modules/mod_rewrite.so
He usado
Código:
Options FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
y tambien he intentado con la sugerencia que ellos hacen en la guia de usuarios.
Código:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
Pero no logro hacer que las peticiones se hagan sin utilizar el index.php
Alguna sugerencia , manual explicativo por favor.
Uso apache2