묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
홈페이지 주소 뒤에 /xe 나오는 것 없애는 방법중 이방법을 쓰니 모바일이 최적화되지 않네요.
2013.09.13 14:46
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>홈페이지 제목</title>
</head>
<frameset rows="*,0" border=0>
<frame src="xe" frameborder=0 scrolling=auto>
</frameset>
</html>
ROOT에 올렸는데 홈페이지 뒤에 XE는 사라졌으나.
모바일 화면에서 화면이 축소되지 않습니다(모바일설정으로 보이긴 하나) 크게 보인다는 말이에요
어디를 수정해야하죠? 궁금합니다.
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>홈페이지 제목</title>
</head>
<!--@if(Mobile::isMobileCheckByAgent())-->
<frameset rows="*,0" border=0>
<frame src="xe" frameborder=0 scrolling=auto>
</frameset>
<!--@end-->
<?
echo "<meta http-equiv='refresh' content='0; url=/xe/'>";
?>
</html>
로 수정해 보세요. pc에서는 상단 홈페이지 주소 고정 되고, 모바일에서는 원 주소로 나오면서 최적화됩니다.