我有一个托管在 Azure blob 存储中的单页 React 应用程序,但收到请求的内容不存在。深度链接到页面时出错:
我在存储帐户中启用了静态网站选项:
这些文件都在 $web 容器中:
这包括以下带有重写规则的web.config,应该让 index.html 处理所有路由:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="React Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
谁能看到我哪里出错了?