How to check current domain and redirect other domains to avoid frameset?

25 Views Asked by At

Is it any way to check current domain if it's set to example.com then page won't be redirected and if URL is not set to current domain then page will be redirected to example.com?

Actually I want to check if other domains are using FRAMESET to my website then those websites will be redirected to my website.

I found this following JavaScript code:

if ( window.self !== window.top ) {
window.top.location.href=window.location.href;
}

but there is a problem here, some of my pages will be redirected to Page not found! maybe because I'm using google iframe.

*

  • However this question is look like duplicated, but the main issue in this question is about when we are using iframe in our website and if we will use above JavaScript line then our website will be redirected too, but I'm going to avoid other domains to use FRAMESET to my website.
  • -

Is it possible to avoid FRAMESET for other domains while we are using google iframe too (for example)?

I highly appreciate your help

0

There are 0 best solutions below