我是 Netlify 配置的新手,所以任何帮助表示赞赏。我正在通过 Netlify 设置一个普通的 html、css 和 javascript 站点,我想这样做,所以如果我链接到它们,https://example.com/about
那么它们就会被提供给about.html
页面。netlify.toml
我可以在我的文件中做类似的事情吗?如果我不包含,from = "/*"
那么我将无法访问该站点,但我想再次从/reset-password
该页面路由reset-password.html
,感谢任何帮助!
from = "/*"
to = "/index.html"
status = 200
from = "/reset-password"
to = "/reset-password.html"
status = 200