0

我是 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
4

2 回答 2

1

为每个重定向规则添加一个 [[redirects]] 标头:

[[redirects]]
  from = "/*"
  to = "/index.html"
  status = 200

[[redirects]]
  from = "/reset-password"
  to = "/reset-password.html"
  status = 200
于 2021-11-17T16:37:12.230 回答
0

当我研究了一天的剩余时间时,我发现任何.html文件都将作为路由存在,因此不需要重定向。如果您想链接到example.com/about您只需创建一个about.html页面,它将自动在该端点提供。

于 2020-11-12T22:37:13.257 回答