我创建了一个干净的Angular 6 App。我将以下web.config添加到src文件夹:
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Angular" 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="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
我在angular.json文件的Assets部分中添加了“ src / web.config”。我已将Web应用程序上的节点版本更新为10.6。
当我将应用程序部署并导航到站点时,我得到以下提示:您无权查看此目录或页面。
有什么建议吗?
答案 0 :(得分:4)
我花了很长时间才弄清楚这一点。希望对您有所帮助。