Home > Technical & Creative Skills > Programming, Servers & Scripts

Fraud - Cache.google.com (1)


01-10-2022 03:07 PM #1 jeremie (Moderator)

Probably related to Google AMP cache:
https://developers.google.com/amp/cache

See here for more info:
https://www.webmasterworld.com/searc...rs/4863183.htm


In particular the post from keyplyr

Your page might be used in a frame inside a AMP page, which would generate such request.

You can stop remote framing of your pages with either or both of these methods:

A script:
Code:
<script type="text/javascript">
if (parent.frames.length > 0) {
parent.location.href = location.href;
}
</script>
A header tag in htaccess:
Code:
Header append X-FRAME-OPTIONS "deny"


Home > Technical & Creative Skills > Programming, Servers & Scripts