다운로드 파일에 파일 경로가 노출되지 않음

8197 단어
1, HTML 페이지
<button type="button" class="mbDownload"> </button>
<script type="text/javascript">
	// 
	$('.mbDownload').click(function(){
		$.post(
			"{:U('Index/mbDownload')}",
			function(res){
				var form = document.createElement('form');
				form.setAttribute('style','display:none');
				form.setAttribute('target','');
				form.setAttribute('method','post');
				form.setAttribute('action',res);
				
				var input = document.createElement('input');
				input.setAttribute('type','hidden');
				input.setAttribute('name','exportPostTime');
				input.setAttribute('value','');
				document.body.appendChild(form);
				form.appendChild(input);
				form.submit();
			}
		)
	})
</script>

2, PHP 파일
/* 
 *  
 */
public function mbDownload(){
	$url = "http";
	if($_SERVER['HTTPS']=='on') $url .= "s";
	$url .= "://".$_SERVER['SERVER_NAME'];
	
	echo $url.'/Public/ .xlsx';
	exit();
}

좋은 웹페이지 즐겨찾기