1、IIS安装 URL重写工具2.0
2、添加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="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
我来看看,我也遇到这个问题了,(vue也会有这个问题)https://blog.csdn.net/qq_40732336/article/details/120813211
大佬,友链添加了,常来看看哦
嗯嗯,是的,大佬常来往哟~
赞!我来打卡了!谢谢分享
感谢,刚好遇到这个问题。
谢谢分享,写的不错
学习了,文章不错,谢谢