curl 호출시
호출 url이 리다이렉트 되는 경우, 아래처럼 보여진다
curl naver.com
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center> NWS </center>
</body>
</html>
-L 옵션을 추가하면, 리다이렉트된 페이지 내용이 표시된다
curl -L naver.com| more
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 162 0 162 0 0 23142 0 --:--:-- --:--:-- --:--:-- 23142
100 138 0 138 0 0 8625 0 --:--:-- --:--:-- --:--:-- 8625
<!doctype html> <html lang="ko" data-dark="false"> <head> <meta charset="utf-8"> <title>NAVER</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=1190"> <meta name=
"apple-mobile-web-app-title" content="NAVER"/> <meta name="robots" content="index,nofollow"/> <meta name="description" content="네이버 메인에서 다양한 정보와 유용한 컨텐츠를 만나 보세요"/> <meta property="og:title" content="네이버"> <me
ta property="og:url" content="https://www.naver.com/"> <meta property="og:image" content="https://s.pstatic.net/static/www/mobile/edit/2016/0705/mobile_212852414260.png"> <meta property="og:description" content="네이버 메인에서 다양한
보와 유용한 컨텐츠를 만나 보세요"/> <meta name="twitter:card" content="summary"> <me
php에서 호출시 사용되는 옵션값
$curl = curl_init('http://naver.com');
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);