Hallo Ihr Lieben vielleicht könnt Ihr mir helfen oder Tipps geben.
Folgendes Problem
Ich habe eine Seite als Beispiel: example.org die über ein Untermenü auf ein Verzeichnis xx zu greift so steht in der URL:
https://example.org/xx/index.html wenn ich jetzt wieder zurück zur Startseite gehe müsste in der URL:
https://example.org/index.html stehen allerdings wird bei mir immer noch
https://example.org/xx/index.html angezeigt.
Auch wenn ich ein Unterseite innerhalb von xx aufrufe verändert sich die URL nicht.
Welcher Befehl könnte so was verursachen? ein Fehler der htaccess schließe ich aus!
htaccess:
Code:
AddHandler application/x-httpd-php php php4 php3 html htm
RewriteEngine On
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^(.*)$ https://example.org/$1 [R=301,L]
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access plus 1 week"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType application/x-javascript "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
</IfModule>
<FilesMatch „\.(js|css|html|htm|php|jpg|pdf|png|xml)$“>
SetOutputFilter DEFLATE
AddOutputFilterByType DEFLATE text/html text/plain text/xml image/jpeg application/pdf image/png
</FilesMatch>