Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/10/2011, 09:44
willaser
 
Fecha de Ingreso: mayo-2011
Mensajes: 20
Antigüedad: 13 años
Puntos: 0
.htaccess 500 Internal Server Error

Muy buenas, tengo problemas al configurar mi .htaccess. Busco quitar el "index.php" que aparece en la URL. Consigo que CI funcione a la perfección en localhost pero al subirlo al ftp me salta el siguiente error:

Código PHP:
Ver original
  1. Internal Server Error
  2.  
  3. The server encountered an internal error or misconfiguration and was unable to complete your request.
  4.  
  5. Please contact the server administrator, webadmin@kundenserver.de and inform them of the time the error occurred, and anything you might have done that may have caused the error.
  6.  
  7. More information about this error may be available in the server error log.
  8.  
  9. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

Este es el contenido de .htaccess:

Código PHP:
Ver original
  1. Options +FollowSymLinks
  2. <IfModule mod_rewrite.c>
  3.     RewriteEngine on
  4.  
  5.     RewriteCond %{REQUEST_FILENAME} !-f
  6.     RewriteCond %{REQUEST_FILENAME} !-d
  7.     RewriteRule ^(.*)$ index.php?/$1 [L]
  8. </IfModule>
  9.  
  10. <IfModule !mod_rewrite.c>
  11.     ErrorDocument 404 /index.php
  12. </IfModule>

¿Alguien sabe como hacer que funcione también en el ftp? Saludos y muchas gracias!