请帮助。我有一个react应用程序,当从VS 2017启动时工作完美。同一个应用程序当托管在Azure VM(IIS-8,Windows Server)上时给我404或500个错误。
我的托管目录结构适用于我的.Net应用程序以及混合的.net和React应用程序,但不适用于我的新的仅React应用程序。
我的目录结构是wwwroot〉Dashboard。我将我的生产版本复制到这个Dashboard文件夹。
我的Web配置是:
`<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\Dashboard.dll" stdoutLogEnabled="true" stdoutLogFile=".\logs\stdout" />
<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" />
<add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</location>
</configuration>`
1条答案
按热度按时间qcbq4gxm1#
据我所知,www.example.com的asp.net核心应用程序使用services.AddSpaStaticFiles来为React应用程序服务而不是使用url重写。
我建议您可以检查Startup.cs的Configure和ConfigureServices方法,以确保您已经添加了SPA设置。
代码如下: