도메인 고정
본문
안녕하세요? 초보입니다.
도메인을 고정 하고 싶습니다.
예를 들어 aaa.com//theme/~~~ 이런식을
도메인 고정으로 aaa.com으로만 나오게 하고 싶습니다.
테마를 적용하였더니 너무 길게 나와서요.
<html>
<head>
<title>어쩌구저꺼구</title>
</head>
<frameset rows="0,*" frameborder=NO border=0 framespacing=0>
<frame scrolling=no noresize src="">
<frame scrolling=yes src="index.php">
<noframes><body></body></noframes>
</frameset>
</html>
이런식으로 하였더니 PC에서는 되는것 같은데 모바일에서는 안되네요.
테마는 반응형으로 해서 안되는것인가요?
반응형에서도 도메인 고정을 하려면 어떤식으로 하여야 할까요.
.htaccess 에서 하면 될것 같은데 그것은 제가 잘 몰라서요.
답변 1
index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content= "text/html; charset=utf-8" />
<title>홈페이지 타이틀</title>
</head>
<body>
<frameset rows="*,0" border= 0>
<frame src="메인페이지 주소" frameborder=0 scrolling=auto> </frameset> <noframes>
</body>
</noframes>
</html>