我在服务器系统中托管了我的Angular 4应用程序,最初我遇到了404错误所以我在我的生成构建文件夹中添加了一个web.config文件。现在我收到了这个错误。
但是应用程序在我的本地系统上正常运行,它会抛出服务器系统的错误。我尝试了一些在win7上运行的其他系统,win10但是它没有运行总是显示错误500.19。 / p>
我花了好几个小时来解决这个问题,在stackoverflow中引用了与我的帖子相关的所有帖子,但没有任何工作。
任何人都可以帮我解决这个问题。
错误页面:
的Web.Config
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="AngularJS Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
</conditions>
<action type="Rewrite" url="/eCommerceWebsite" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
答案 0 :(得分:7)
您的IIS缺少网址重写模块。
您可以从microsoft下载并安装它:https://www.iis.net/downloads/microsoft/url-rewrite