Subdomain's page is loading again and again

When i am trying to acess https://adityaasreaper.4dollar.website/about/ it loads again and again for along time . But https://adityaasreaper.4dollar.website/ is working fine. why the subdomain;s page is not opening ??? Please help

Can you please temporary remove this script on about page? I think this code makes this bug:

var pathname = window.location.pathname.replace(/^(.+)\/$/, "$1");
if (pathname !== window.location.pathname) {
  window.location.pathname = pathname;
}
2 Likes

it seems to me you need a purge cache on Cloudflare
because the rocket loader script looks for the http variant (301 redirection)
and your site is on https and this is where the infinite loop is formed…

  1. purge cache on CF and test
  2. if it doesn’t help disable rocket loader
3 Likes

Thanks that solved the problem

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.