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 originalInternal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
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
.
More information about this error may be available in the server error
log.
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 originalOptions +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>
¿Alguien sabe como hacer que funcione también en el ftp? Saludos y muchas gracias!