Hallo zusammen,
das Problem ist gelöst! :D
Es war tatsächlich die .htaccess. Ich habe die Datei wie bei Basic WP hochgeladen und schon funktioniert alles super!
Hier mal die vorher verwendete .htaccess. Ich habe sie nicht geschrieben, keine Ahnung warum sie so aussah:
Apache Configuration
php_value memory_limit 256M
php_value max_input_vars 10000
<IfModule mod_headers.c>
#Umleitung http zu https
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# Verhindert Image Hotlinking. Ersetze die letzte URL mit einem Bildlink.
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?deinblog.de [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ http://deinbild.jpg [NC,R,L]
# Aktiviert GZIP Komprimierung
<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
</IfModule>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# BEGIN ShortPixelWebp
# END ShortPixelWebp
Alles anzeigen
__________________________
Bei meinem Shop (so altertümlich der Quellcode auch sein mag), wird bei Eingabe von http automatisch https erzwungen, so dass auch alle Bilder automatisch erscheinen und nicht rumzicken. ;)
Hier sieht die .htaccess so aus:
Apache Configuration
AddDefaultCharset UTF-8
Options +FollowSymLinks
RewriteEngine On
#RewriteCond %{HTTP_HOST} ^.+\.shop.tee-traum\.de$ [NC]
#RewriteRule ^(.*)$ https://www.tee-traum.de/shop/$1 [R=301,L]
RewriteBase /shop/
RewriteRule ^(.*)-p-(.*).html$ main_bigware_34.php?items_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ main_bigware_29.php?bigPfad=$2&%{QUERY_STRING}
RewriteRule ^(.*)-m-(.*).html$ main_bigware_29.php?producers_id=$2&%{QUERY_STRING}
# Redirect HTTP to HTTPS
#RewriteCond %{HTTPS} off
#RewriteCond %{HTTP:X-Forwarded-Proto} !https
#RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Alles anzeigen
Irgendwie hätte ich diese automatische Umleitung auch bei wordpress erwartet. -
C'est la vie.
Euch beiden jedenfalls herzlichen Dank für eure tatkräftige Unterstützung!!!