angular應用部署在iis上,刷新出現(xiàn)404
解決方案:
安裝 iis URL Rewrite 模塊,配置urlrewrite如下:
在 src 目錄下增加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>配置 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
https://github.com/WeihanLi/TechNotes/issues/16 https://stackoverflow.com/questions/43785928/angular-2-hosted-on-iis-http-error-404 https://blogs.msdn.microsoft.com/premier_developer/2017/06/14/tips-for-running-an-angular-app-in-iis/以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持錯新站長站。
新聞熱點
疑難解答
圖片精選