Post

Path always begins with slash

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en" xmlns:th="https://www.thymeleaf.org">
  <head>
    <meta charset="UTF-8" />
    <title>new</title>
  </head>
  <body>
    <h1>NEW</h1>
    <form action="/todos/create">
      <input type="text" name="title" />
      <input type="text" name="content" />
      <input type="submit" />
    </form>
  </body>
</html>

모든 경로에는 / 슬래시가 붙어야 함

  • 최상위 도메인으로 시작 하겠다는 뜻.
  • /슬래시가 없으면 지금 도메인에서 시작하겠다
This post is licensed under CC BY 4.0 by the author.