在iis上部署 AngularJS
Posted freebird911
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在iis上部署 AngularJS相关的知识,希望对你有一定的参考价值。
1.下载Microsoft URL Rewrite Module 2.0 for IIS (x64) https://www.microsoft.com/en-us/download/details.aspx?id=47337
2.无脑安装
3.安装angular-cli
npm install -g @angular-cli
如果打包报错,可以考虑重装一下
npm uninstall -g angular-cli @angular/cli
npm cache clean
npm install -g @angular/cli
4.打包angular
ng build --prod --aot
5.把打包生成的dist文件夹内容拷贝到iis的网站目录下
6.在目录下新建一个web.config文件,写入内容
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="AngularJS" 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>
7.运行网站
以上是关于在iis上部署 AngularJS的主要内容,如果未能解决你的问题,请参考以下文章
在 Azure Web 应用/Azure API 上部署时缺少 CORS 标头