• My website was working perfect yesterday,
    Today I had the host install SSL which works perfect it was tested by Comodo
    I am told there is something wrong with my base url or with a WP script.
    I flushed DNS removed all plugins,re-installed WordPress and my theme,and still this is what happens:
    if I use https://christmasshortstory.com every page
    resolves perfect,
    but when I use https://christmasshortstory.com every page
    is messed up.
    This is a problem since all my inbound links point to http,
    not https.
    Can anyone help me figure this out?

Viewing 1 replies (of 1 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    but when I use https://christmasshortstory.com every page
    is messed up.

    Have you tried putting in a http to https redirect via .htacces like so?

    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTP_HOST} christmasshortstory\.com [NC]
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://christmasshortstory.com/$1 [R=301,L]
    </IfModule>
Viewing 1 replies (of 1 total)
  • The topic ‘base url fix’ is closed to new replies.