• Resolved jessicaZ

    (@jessicaz)


    I’ve used this plugin successfully in the past on my multisite install, but in trying to duplicate a site today, I’m getting a “The page isn’t redirecting properly” for the dashboard page of the newly cloned site. I can get to the cloned site, though it appears to have no style sheet. I’ve tried 3 times and continue to get the same error.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jessicaZ

    (@jessicaz)

    Never mind, I figured it out, some how the htaccess had been replace with the standard wp code instead of the multisite code.

    it SHOULD be this:
    RewriteEngine On
    RewriteBase /
    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]

    Plugin Author Pierre Dargham

    (@pdargham)

    Ok,

    I’m glad you’ve find a solution,

    Enjoy using the plugin,

    Bests regards,

    Pierre

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Redirect error on dashboard of newly duplicated site’ is closed to new replies.