html,使用iframe命令使网页a完全调用网页b的内容,全屏调用

注意,两边都要https,以及被调用的网站需要允许调用之类的

    add_header 'Access-Control-Allow-Origin' '*';
    add_header 'Access-Control-Allow-Methods' 'GET, HEAD, POST, OPTIONS';
    add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
    add_header 'Access-Control-Allow-Credentials' 'true';

 

比如下面这个代码,网页a完全调用的网页b的内容

<!DOCTYPE html>    
<html>    
  <head>
    <!-- <title>Responsive Iframe Example</title> -->
    <style>
        body, html {
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
        iframe {
            width: 100%;
            height: 100vh; /* 100% of the viewport height */
            border: none;
        }
    </style>
</head>
<body>    
<!-- <h2>HTML iframe 示例</h2>     -->
<!-- <p>使用 height 和 width 属性指定 iframe 的大小:</p>     -->
<iframe src= "https://nas.seriousos.com:5239" ></iframe>
</body>    
</html>