IIS 7.5子文件夹403 - 禁止错误 - 角度项目

时间:2017-08-28 21:51:51

标签: angular iis iis-7.5

我使用IIS 7.5来托管使用CLI制作的Angular站点。网站加载正常,但我注意到我的/assets/images文件夹出现403禁止错误。 对于assetsimagesAnonymous Authentication文件夹的Enabled都设置为Application Pool Identity

我之前有两个文件夹作为虚拟目录,但它仍然无法正常工作。

2 个答案:

答案 0 :(得分:0)

在web.config中尝试此操作

  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"></modules>
    <handlers>
      <remove name="UrlRoutingHandler"/>
    </handlers>
  </system.webServer>

答案 1 :(得分:0)

我的问题出现在我的模板文件中,我只需要将其作为./assets/images/image.png引用,而不是绝对路径。