IIS部署React.js localHost可以访问 ip访问404问题
程序员文章站
2022-03-24 10:45:42
...
在生成的dist目录下 新增web.config文件
内容如下:
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Angular Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
IIS需要安装URL ReWrite模块
下载地址:https://www.iis.net/downloads/microsoft/url-rewrite
安装成功后,IIS首页显示如下图,重启对应网站即可
上一篇: 再续IIS设置