• I created a WordPress site in a folder called “wordpress”. Then I set up a multi-site so that I could run two separate blogs. I imported about 400 blogger posts into my main blog.

    Then I was ready to make it live so I moved it out of the “wordpress” folder and updated my htaccess and wp-config.php sand went into php admin and updated all my links. I followed this https://www.realisingdesigns.com/2010/09/16/moving-the-domain-of-a-wordpress-multisite-install/

    Here is my .htaccess

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . s/index.php [L]
    </IfModule>

    # END WordPress

    (Almost) everything displays correctly BUT all pages, posts, and image links still reference the “wordpress” folder even though it has been deleted from the server and the links in my database have been updated. If I take “wordpress” out of the url everything also displays correctly.

    I’ve cleared my cache, refreshed the page, and waited about a week but it’s the same. Any idea what’s going on or what I should do?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Moved multisite but links and images still reference old path’ is closed to new replies.