Support » Localhost Installs » Multisite Clone, homepage fine but I can't get deeper

  • Hi,

    I just finished cloning my online multisite into my localhost and got everything to work, but just for my homepages.

    I’m using Xampp and I have three local domains:

    local.site1.com
    local.site2.com
    local.site3.com

    Accessing the homepage of each one is fine, but trying to get deeper than that like local.site1.com/blog/2011/08/ I get an “Object not found error”.

    Beeing an URL problem, I guess it might have anything to do with with the .htaccess file. Here’s mine (copied from the online installation that’s working fine):

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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).*) $1 [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    
    # END WordPress

    I guess it’s something really simple that I’m not getting. Thanks

  • The topic ‘Multisite Clone, homepage fine but I can't get deeper’ is closed to new replies.