Beiträge von Tim Weisgerber

    Guten Tag,

    ich habe ein Problem mit meiner .htacsess Datei aber habe leider keine Ahnung was

    ich an ihr ändern muss, damit ich keinen 500 Internal Server Error bekomme.

    Folgendes steht in meiner htaccsess Datei :

    ;

    //updated with stackoverflow solution to the problem as to why this keeps failing

    # Hotlink Protection START #

    RewriteEngine On

    RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]


    # Force HTTPS for

    RewriteCond %{HTTPS} !=on

    RewriteRule https://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L]


    # Force HTTP

    RewriteCond %{HTTPS} =on

    RewriteRule http://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L]


    # Remove index.php from URLs

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ /index.php/$1

    # Hotlink Protection END #


    Ich hoffe Ihr können mir weiter helfen.

    Mit freundlichen Grüßen,

    Tim Weisgerber