It can happen that your browser gives a console error at line 1 ( <html> ) of your website, saying things about referrer policy, like this:

Screenshot_2019-07-23_09.25.09.jpg

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!

 


Share this page