page is loading twice
-
Hello, this is a great plugin.
The only issue is, that the page loads twice. Do you have a solution?
I have find something similar but I am not sure.
Many thanks Matthias
It looks as if the test page couldnt’ be loaded, so the redirect rules weren’t verified. So your .htaccess rule is not set.
The redirect is then handled by javascript, which causes the double loading: first your page loads on http, then javascript redirects to https, which is the second load.
To fix it, you”l have to set the redirect in .htaccess. The most common redirect rule is this one.
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
The topic ‘page is loading twice’ is closed to new replies.