728x90
반응형
(관련된 글)
Windows | 개인 PC IIS 켜기 웹서버 켜기, 윈도우 웹서버 돌리기(Internet Information Services)🔗
Windows | 윈도우 서버 IIS 켜기 웹서버 구성하기, Internet Information Servives🔗
IIS를 구성하고 나면, 위와 같이 한글이 깨진다.
이유는 HTML 파일의 인코딩이랑 관계가 있다.
아래 코드와 같이 입력하면, 인코딩이 깨지지 않고 잘 나온다.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
</head>
<body>
<h1> iis 로 만든 첫 페이지 index.html </h1>
</body>
</html>
4번째에 "<meta charset="UTF-8">"이 있어서 되는 것이다.
그렇다고 한 줄만 추가하면 안 되고, <head> 태그 안에 넣어야 한다. (웹개발자는 다 알겠지!!)
(관련된 글)
Windows | 개인 PC IIS 켜기 웹서버 켜기, 윈도우 웹서버 돌리기(Internet Information Services)🔗
Windows | 윈도우 서버 IIS 켜기 웹서버 구성하기, Internet Information Servives🔗
728x90
반응형
'Windows > Windows' 카테고리의 다른 글
Windows | 더미(빈) 파일 만들기 fsutil, (powershell, cmd 에서) (0) | 2022.10.07 |
---|---|
Windows | 윈도우 서버 IIS 켜기 웹서버 구성하기, Internet Information Servives (0) | 2022.09.26 |
Windows | 개인 PC IIS 켜기 웹서버 켜기, 윈도우 웹서버 돌리기(Internet Information Services) (0) | 2022.09.21 |
Windows | IP주소 레지스트리 경로 (0) | 2022.09.19 |
Windows | IP주소 변경하기(고정 IP, DHCP 로 변경 등) (0) | 2022.09.14 |
댓글