• Resolved kevinphayes

    (@kevinphayes)


    I migrated a site to a new server using All In One Migration.

    A test run on the same data using a different domain name worked OK – front and back end behaving as expected.

    When I migrated using the above domain name, I can log in, use the back end, view pages on the front end EXCEPT for the home page. When I go to the home page, the tab in the browser flickers and the page doesn’t display. No error message.

    Everything’s up to date. The test run worked OK. The only difference is the domain. As far as I can tell, .htaccess is correct. I’m stumped.

    The page I need help with: [log in to see the link]

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

    (@kevinphayes)

    .htaccess:

    # BEGIN LSCACHE
    ## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
    <IfModule LiteSpeed>
    RewriteEngine on
    CacheLookup on
    RewriteRule .* – [E=Cache-Control:no-autoflush]
    RewriteRule ^min/\w+\.(css|js) – [E=cache-control:no-vary]

    ### marker CACHE RESOURCE start ###
    RewriteRule wp-content/.*/[^/]*(responsive|css|js|dynamic|loader|fonts)\.php – [E=cache-control:max-age=3600]
    ### marker CACHE RESOURCE end ###

    ### marker FAVICON start ###
    RewriteRule favicon\.ico$ – [E=cache-control:max-age=86400]
    ### marker FAVICON end ###

    </IfModule>
    ## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
    # END LSCACHE
    # BEGIN NON_LSCACHE
    ## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
    ### marker MINIFY start ###
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} ^(.*)/min/(\w+)\.(css|js)$
    RewriteCond %1/wp-content/cache/$2/$1.$2 -f
    RewriteRule min/(\w+)\.(css|js) wp-content/cache/$2/$1.$2 [L]
    </IfModule>
    ### marker MINIFY end ###

    ## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
    # END NON_LSCACHE

    # BEGIN CLOSTE

    ## Do not edit the contents of this block! ##
    RewriteEngine On
    SetEnvIfNoCase Remote_Addr ^69.204.120.139$ MODSEC-OFF
    RewriteCond %{REMOTE_ADDR} ^69\.204\.120\.139$
    RewriteRule .* – [E=noconntimeout:1]

    # END CLOSTE
    # BEGIN LiteSpeed
    <IfModule Litespeed>
    SetEnv noabort 1
    </IfModule>
    # END LiteSpeed
    # 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`

    Have you tried another browser? As the home page looks fine to me.

    Though my browser’s web developer tools are reporting a 404 for this CSS file:
    https://cdn-5d32bce3f911c80ef4a25649.closte.com/wp-content/plugins/soliloquy-lightbox/themes/style.css

    But everything else is reporting 200’s and 304’s. So if you’re still experiencing issues, it might have something to do with the CDN your site is using.

    • This reply was modified 5 years, 6 months ago by Andrew Nevins.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘After Migration, Back End and all pages but Home are OK.’ is closed to new replies.