详解angular部署到iis出现404解决方案

这篇文章主要介绍了详解angular部署到iis出现404解决方案,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

angular应用部署在iis上,刷新出现404

解决方案:

安装 iis URL Rewrite 模块,配置urlrewrite如下:

在 src 目录下增加web.config,内容如下:

<configuration> <system.webServer> <rewrite> <rules> <rule 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="https://www.jb51.net/" /> </rule> </rules> </rewrite> </system.webServer> </configuration>

配置 web.config 自动打包

修改 angular-cli.json文件(angular2-5)

"apps": [ { "root": “src”, "ourDir": “dist”, "assets": [ “assets”, “favicon.ico”, “web.config” ],

修改 angular.json 文件(angular6)

“build”: { "options”: { . . . "assets": [ “src/assets”, “src/favicon.ico”, “src/web.config” ],

Reference

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/4cde37b08a49b817011c66da227d34e2.html