Guten Abend,
ich habe wohl übermüdet zuviel gebastelt...
Auf meiner Seite www.rolladen-frey.com wird alles richtig dargestellt, lasse ich mich aber von der Seite www.rolladen-frey.de (Achtung jetzt .de - Das .de Paket ist bei Strato, Serverumleitung auf .com eingereichtet) weiterleiten so erscheint dies:
tmp1.PNG
Ich vermute ich habe dies durch eine neue .htaccess verursacht, bin aber zu wenig Profi.
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
##
# Rewrite base
#
# Set the RewriteBase if your TYPOlight installation is in a subdirectoy and
# the rewrite rules are not working properly. Usage examples:
#
# RewriteBase /
#
# Add your own RewriteBase after this comment.
##
##
# Malicious requests
#
# TYPOlight usually does not pass absolute URLs via GET, therefore the
# following rules block all requests that try to pass a URL or the /etc/
# directory as parameter.
##
RewriteCond %{REQUEST_URI} (ftp|https?):|/etc/ [NC,OR]
RewriteCond %{QUERY_STRING} (ftp|https?):|/etc/ [NC]
RewriteRule .* - [F,L]
##
# Compressed .js and .css files
#
# Most of the JavaScript and CSS files used in TYPOlight are also available
# as compressed .gz version, which requires less bandwidth and optimizes the
# page loading time. The following rules load these compressed ressources.
##
AddEncoding gzip .gz
<FilesMatch "\.js\.gz$">
AddType "text/javascript" .gz
</FilesMatch>
<FilesMatch "\.css\.gz$">
AddType "text/css" .gz
</FilesMatch>
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME} \.(js|css)$
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^(.*)$ $1.gz [QSA,L]
##
# Static ressources
#
# Do not rewrite requests for static files or folders such as style sheets,
# images, movies or text documents.
##
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
Im Quelltext passt irgendwas nicht:
<base href="http://www.rolladen-frey.de/www.rolladen-frey.com/"></base>
Muss wohl nur
<base href="http://www.rolladen-frey.com/"></base>
heissen.
Wer weiss Rat?
Vielen Dank!