How to prevent my site page from being loaded into other website iframe?

后端 未结 3 1681
甜味超标
甜味超标 2021-02-06 14:44

We have many gaming websites, among them I am hosting exclusive games on my server, and i don\'t want to access my games to other websites from my server. I want to restrict the

3条回答
  •  深忆病人
    2021-02-06 15:13

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

    It first checks that the top most frame is the frame itself or not if it is not it changes the top level frame to this one. it is javascript.

提交回复
热议问题