Jump to content
xt:Commerce Community Forum

index.php wird nach Update auf 4.1.10 gefordert


mcreck

Recommended Posts

Hallo!

Nachdem ich das Dateien-System auf das Update 4.1.10 aktualisiert habe, erfolgt folgedene Meldung, wenn ich irgendetwas anklicke:

300

The document name you requested (/index.php) could not be found on this server. However, we found documents with names similar to the one you requested.

Available documents:

/index.html (common basename)

Please consider informing the owner of the referring page about the broken link.

Mein Shop ist bei 1und1 gehostet.

Das Template-System habe ich noch nicht aktualisiert.

Kann jemand helfen?

Hat das vielleicht mit (eingeschränkten) Rechten auf dem Server oder etwas mit der htaccess-Datei zu tun?

Vielen Dank schonmal für Eure Antworten :-) !

Link to comment
Share on other sites

Für alle, die das gleiche Problem haben:

Der Fehler lag in der htaccess-Datei.

Hier der Code, der bei 1und1 funktioniert und wo ich das Unterverzeichnis "shop" ergänzt habe:

# RewriteEngine on

# RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php

DirectoryIndex index.php

<IfModule mod_rewrite.c>

SetEnv HTTP_MOD_REWRITE On

RewriteEngine on

RewriteBase /

RewriteCond %{REQUEST_URI} !^/media/

RewriteCond %{REQUEST_URI} !^/extAdmin/

RewriteCond %{REQUEST_URI} !^/skin/

RewriteCond %{REQUEST_URI} !^/js/

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule .* shop/index.php

</IfModule>

<IfModule mod_expires.c>

ExpiresActive On

ExpiresDefault "access plus 1 seconds"

ExpiresByType image/x-icon "access plus 2692000 seconds"

ExpiresByType image/jpeg "access plus 2692000 seconds"

ExpiresByType image/png "access plus 2692000 seconds"

ExpiresByType image/gif "access plus 2692000 seconds"

ExpiresByType application/x-shockwave-flash "access plus 2692000 seconds"

ExpiresByType text/css "access plus 2692000 seconds"

ExpiresByType text/javascript "access plus 2692000 seconds"

ExpiresByType application/x-javascript "access plus 2692000 seconds"

</IfModule>

<IfModule mod_headers.c>

<FilesMatch "\\.(ico|jpe?g|png|gif|swf|css|js)$">

Header set Cache-Control "max-age=2692000, public"

</FilesMatch>

Header unset ETag

Header unset Last-Modified

</IfModule>

Und stundenlanges Fummeln lohnt sich doch :-)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...