Angular部署到windows上
1. 确保已经打开了IIS服务。
2. 编译angular程序 ng build --prod --aot.
编译后项⽬中会出现dist⽂件夹
3. 在IIS中添加⽹站
4. 将编译后的dist⽂件夹添加到⽹站中
5. 安装URL Rewrite Module
因為Angular無刷新的特性,所以瀏覽器地址欄上的網址其實不會真實映射到磁盤的特定位置,所以我們需要安裝6. 新建fig⽂件。内容如下
<?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="/project" />
</rule>
</rules>
angular和angularjs
</rewrite>
</system.webServer>
</configuration>
7. 如果项⽬中有资源⽂件需要将资源⽂件拷⼊到dist中
8. 设置dist⽂件夹的权限最简单的可以设置为以下
*转载请附出处
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论