Estoy teniendo un problema. Ayer termine mi web y la quise subir al servidor que contrate. El problema que no se muesta la pagina. Es como que no encuentra el index, el error es el siguiente:
Not Found
The requested URL /index.php/ was not found on this server.
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 Server at www.miweb.com.ar Port 80
Lo que hice fue subir las carpetas application y system a la carpeta root que me indica el host.
Y mi .htaccess lo tengo configurado asi:
Código:
Cual puede ser el error?RewriteEngine On RewriteBase / RewriteCond $1 !^(index\.php|img|css|js|sitemap\.xml|robots\.txt) #RewriteCond %{REQUEST_FILENAME} !-f #RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]
Muchas gracias.