码迷,mamicode.com
首页 > Windows程序 > 详细

Angular部署到Window10 IIS

时间:2017-10-06 12:24:59      阅读:1941      评论:0      收藏:0      [点我收藏+]

标签:ext   logs   分享   module   tor   article   size   sdi   定位   

1. 确保已经打开了IIS服务。

  如果没有打开可参考 http://jingyan.baidu.com/article/eb9f7b6d9e73d1869364e8d8.html

2. 编译angular程序  ng build --prod --aot.

   编译后项目中会出现dist文件夹

3. 在IIS中添加网站

 技术分享

4. 将编译后的dist文件夹添加到网站中

 技术分享

 

5. 安装URL Rewrite Module

因為Angular無刷新的特性,所以瀏覽器地址欄上的網址其實不會真實映射到磁盤的特定位置,所以我們需要安裝

下载地址: https://www.microsoft.com/en-us/download/details.aspx?id=47337 <https://www.microsoft.com/en-us/download/details.aspx?id=47337>

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="/project" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

 

7. 如果项目中有资源文件 需要将资源文件拷入到dist中

 技术分享

8. 设置dist文件夹的权限 最简单的可以设置为以下

 技术分享

 

 

Angular部署到Window10 IIS

标签:ext   logs   分享   module   tor   article   size   sdi   定位   

原文地址:http://www.cnblogs.com/dennis0525/p/7631245.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!