묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
홈페이지 접속시 http > https 로 리다이렉션 시 접속에러문제
2011.08.08 12:31
홈페이지를 xe로 만들어습니다
리다이렉션 하기 위해 index.php에 스크립트를 넣으면 index.php 파일이 제대로 열리지 않고 화면이 버벅 거립니다(주소를 인식 못하는지 계속 따딱 거리는 현상)
index1.php으로 출판해서 경로를 불러오면 리다이렉션이 되어 https로 인식 되는데 프레임의 문제인가요?
index.php 소스
<?
$hostname = exec("/home/bin/hostname");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>홈페이지를 방문 해 주셔서 감사 드립니다</title>
<script>
var url = https://www.xxx.com;
window.location.replace(url);
</script>
</head>
<frameset rows="1*,0" cols="1*" border="0">
<frame name="main" src="/xe/index.php">
<frame name="top" src="top.php">
<noframes>
<p> </p>
</noframes>
</frameset>
<body>
</body>
</html>
http://www.xxx.com/index1.php로는 인식하고
http://www.xxx.com/index.php로는 주소를 인식을 못하고 계속 화면이 버벅거리네요?
아!! 답답하네
리다이렉션 하기 위해 index.php에 스크립트를 넣으면 index.php 파일이 제대로 열리지 않고 화면이 버벅 거립니다(주소를 인식 못하는지 계속 따딱 거리는 현상)
index1.php으로 출판해서 경로를 불러오면 리다이렉션이 되어 https로 인식 되는데 프레임의 문제인가요?
index.php 소스
<?
$hostname = exec("/home/bin/hostname");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>홈페이지를 방문 해 주셔서 감사 드립니다</title>
<script>
var url = https://www.xxx.com;
window.location.replace(url);
</script>
</head>
<frameset rows="1*,0" cols="1*" border="0">
<frame name="main" src="/xe/index.php">
<frame name="top" src="top.php">
<noframes>
<p> </p>
</noframes>
</frameset>
<body>
</body>
</html>
http://www.xxx.com/index1.php로는 인식하고
http://www.xxx.com/index.php로는 주소를 인식을 못하고 계속 화면이 버벅거리네요?
아!! 답답하네