Solución:
Esto debería ser suficiente:
<IfModule mod_rewrite.c>
RewriteEngine On
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#This last condition enables access to the images and css folders, and the robots.txt file
RewriteCond $1 !^(index.php|public|images|robots.txt|css)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
Esto es lo que uso. Mi CodeIgniter también se ejecuta en un subdirectorio.
RewriteEngine on
RewriteCond $1 !^(index.php|images|swf|uploads|js|css|robots.txt)
RewriteRule ^(.*)$ /ci/index.php/$1 [L]
.htaccess agregar:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
Vaya a application / config / config.php y borre el valor de configuración de la página de índice:
// Old
$config['index_page'] = "index.php";
// New
$config['index_page'] = "";
Resuelto mi problema espero que otros también … 🙂
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)