欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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部署React.js localHost可以访问 ip访问404问题

 

相关标签: IIS