location / {
try_files $uri $uri/ /index.html;
}
这个规则,使用azure部署时,需要在运行目录添加routes.json
路由配置文件。内容如下
{
"routes": [
{
"route": "/*",
"serve": "/index.html",
"statusCode": 200
}
]
}
location / {
try_files $uri $uri/ /index.html;
}
这个规则,使用azure部署时,需要在运行目录添加routes.json
路由配置文件。内容如下
{
"routes": [
{
"route": "/*",
"serve": "/index.html",
"statusCode": 200
}
]
}
评论区