It can happen that your browser gives a console error at line 1 ( <html> ) of your website, saying things about referrer policy, like this:
You can easily solve this by changing 1 rule in your .htaccess file:
According to some users, this can solve the problem. Go into your .htaccess file and change the following:
Header set Referrer-Policy ""
to
Header set Referrer-Policy "origin"
This will solve your problem!