I have a website hosted in an absurd place. Earlier today, they added this to the "Head" section of my pages.
<meta name="robots" content="noindex, nofollow, noarchive">
Unfortunately, I cannot change the code directly, but I do have access to Robots.txt (which they also screwed, but I already fixed it), JavaScript and Html. Is there any way I can remove that one tag from my website? I tried this one solution, but it doesn't seem to be working:
document.querySelector('meta[name="robots"]').setAttribute("content", "all");
Any other ways I can do this, besides the obvious "it's about time you move to a different host lol"? Maybe there is, ultimately, something I can add to Robots.txt to override this?