how to resolve iframe cross domain issue [duplicate]
问题 This question already has answers here : IFrame security and CORS (1 answer) Overcoming “Display forbidden by X-Frame-Options” (26 answers) Closed 3 years ago . I'm making web page that has to show another domain's web page. For example, in my web html, there are two <div> tags. Like : <html> <head></head> <body> <div> <p> hello world </p> </div> <div> <!-- other domain's web page comes here --> </div> </body> </html> To resolve my issue, I should use <iframe> , <embed> or <object> tags, but