본문 바로가기
홈페이지 만들기

iframe이 안보일 때 https iframe

by 좋은열매 2021. 5. 6.
728x90

http 웹사이트에서는 iframe은 활성화가 됩니다.

하지만,

https는 웹 보안상 iframe이 활성화가 되지 않습니다.

이럴 때 아래의 내용을 참고하시면 https에서도 iframe을 사용가능하게 사용할 수 있습니다.

 

1. 아래 내용을 복사해 redirect.php 파일을 생성해주세요 !

<?php
if (isset($_GET['url'])) {
$url = $_GET['url'];
$ch = curl_init();  
$timeout = 5;                                                                                 
curl_setopt($ch, CURLOPT_URL, $url);                                                                                 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);                                                                                 
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);                                                                                 
$data = curl_exec($ch);                                                                                 
curl_close($ch);                                                                                 
echo $data;                                                                                 
}                                                                                 
?>

2. 생성된 파일을 index파일이 있는 곳에 복사해주세요.

 

3. 아래의 내용을 복사해 출력하고 싶은 본문에 붙여넣어 주세요.

<iframe src="redirect.php?url=http://주소/"></iframe>

 

 

 

 

728x90