Home 1.3. View 환경설정
Post
Cancel

1.3. View 환경설정

Main Page 만들기

~/resources/static 경로에 index.html 파일 만들기

1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Hello</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
Hi
<a href="/hello">Hi</a>
</body>
</html>
Contents