Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/07/2012, 16:17
mark1829
 
Fecha de Ingreso: junio-2010
Mensajes: 153
Antigüedad: 14 años, 5 meses
Puntos: 4
Subir un proyecto con Codeigniter

Hola como estan?

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:
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]
Cual puede ser el error?

Muchas gracias.