1. 確保已經打開了IIS服務。html
若是沒有打開可參考 http://jingyan.baidu.com/article/eb9f7b6d9e73d1869364e8d8.htmlweb
2. 編譯angular程序 ng build --prod --aot.網站
編譯後項目中會出現dist文件夾ui
3. 在IIS中添加網站url
4. 將編譯後的dist文件夾添加到網站中spa
5. 安裝URL Rewrite Module3d
因為Angular無刷新的特性,因此瀏覽器地址欄上的網址其實不會真實映射到磁盤的特定位置,因此我們須要安裝xml
下載地址: https://www.microsoft.com/en-us/download/details.aspx?id=47337 <https://www.microsoft.com/en-us/download/details.aspx?id=47337>htm
6. 新建web.config文件。內容以下blog
<?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文件夾的權限 最簡單的能夠設置爲如下
*轉載請附出處