Hallo,
nach der Umstellung auf SSL ist bei mir folgendes Problem aufgetaucht. Das ganze Blog funktioniert einwandfrei bis auf die Pagination.
Das HTML wird richtig generiert: <a href="https://blog.mypage.com/page/3/">3</a> Nach dem Klick landet man aber auf der Hauptseite [COLOR=#000000]https://blog.mypage.com[/COLOR] Die anderen Links und Menüs sind einwandfrei.
Vor der Umstellung (über HTTP) hat die Pagination gut funktioniert.
So wie ich das verstehe liegt es an .htaccess
Kann das sein?
Apache Configuration
Options +FollowSymLinks
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} !=on
#RewriteRule ^(.*)$ https://blog.mypage.com/$1 [R=301,L]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
</IfModule>
# END WordPress
Alles anzeigen