• I have never seen this before. I just moved to a new host, and for some reason, ALL my links, even absolute URLs are being rewritten.

    So if I have https://example.com in my link, the link then becomes https://example.ORG/example.com if my domain was example.org. It’s not a browser issue, because I have tested it in various browsers, both with the same result.

    Oddly enough, view source shows the absolute URL, so why is WordPress adding my domain to an absolute URL?

    I put up a static web page and this does not happen. I put it both in the root and in the wordpress folder (wp). You can test it here: https://the-good-plate.com/testurl.html . One of the blog pages with a problem is this: https://the-good-plate.com/my-library/

    I thought I would post here before yelling at my host. Just for S and Giggles, here’s my htaccess content:

    # 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

  • The topic ‘ALL links are being rewritten’ is closed to new replies.