侧边栏壁纸
博主头像
Wood Chen

万事如意

  • 累计撰写 242 篇文章
  • 累计创建 203 个标签
  • 累计收到 10 条评论

目 录CONTENT

文章目录

azure static web apps部署静态网页,需要设置伪静态规则

wood
2023-09-15 / 0 评论 / 0 点赞 / 40 阅读 / 0 字
location / {
   try_files $uri $uri/ /index.html;
}

这个规则,使用azure部署时,需要在运行目录添加routes.json路由配置文件。内容如下

{
  "routes": [
    {
      "route": "/*",
      "serve": "/index.html",
      "statusCode": 200
    }
  ]
}

评论区