사이트는 php파일로 제작되었으며, 서버에서 pdf 파일을 다운로드 받게끔 되어있습니다. (회사서버)
IE 나 크롬에서는 정상작동하는데
ABC.pdf 파일을 받으려고 치면 해당 다운로드 소스가 구현되어있는 파일명(ex:download.php) 로 다운이 됩니다;;;;
웃긴건 저걸 download.pdf 로 변경하면 정상적인 pdf파일이 열립니다.... ㅠㅠ
php 파일 헤더 설정에 문제가 있는건지..
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment;; filename=".$filename);
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".(string)(filesize($url.$file)));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
현재 헤더는 저렇게 구성되어 있습니다. ㅠ
능력자분들 도와주세요 흑 외국에서 파폭 쓰시는분이 안된다고 뭐라고 하시네영 ㅠㅠ