我使用IIS 7.5来托管使用CLI制作的Angular站点。网站加载正常,但我注意到我的/assets/images
文件夹出现403禁止错误。
对于assets
,images
和Anonymous Authentication
文件夹的Enabled
都设置为Application Pool Identity
。
我之前有两个文件夹作为虚拟目录,但它仍然无法正常工作。
答案 0 :(得分:0)
在web.config中尝试此操作
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"></modules>
<handlers>
<remove name="UrlRoutingHandler"/>
</handlers>
</system.webServer>
答案 1 :(得分:0)
我的问题出现在我的模板文件中,我只需要将其作为./assets/images/image.png
引用,而不是绝对路径。