码迷,mamicode.com
首页 > 其他好文 > 详细

angular 在IIS部署运行

时间:2017-12-17 22:22:44      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:index   sdi   pos   director   url   let   intern   run   condition   

1、首先,我是在VS中开发的angular 所以理论上直接复制程序到服务器,然后建立个站点就完成了,但实际还需要一些设置!呵呵~好坑

2、internet信息服务管理器,打开”MIME类型“。点击添加,扩展名写【.json】MIME类型写【application/x-javascript】,因为多语言需要用到json文件。

3、在Web.config中增加下面代码,因为在IIS中运行需要这个路由的解析:

技术分享图片
<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>
技术分享图片

 

4、增加默认文件index.html 要不路由会出问题,然后带来一些莫名其妙的问题。

5、如果报告权限之类的错误请按下图设置。

技术分享图片

6、Webapi Put 和Delete 访问不允许

web.config中system.webServer标签增加:

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true" runManagedModulesForWebDavRequests="true" >
      <remove name="WebDAVModule" />
    </modules>
</system.webServer>

 转自:http://www.cnblogs.com/cxd1008/p/7890764.html

angular 在IIS部署运行

标签:index   sdi   pos   director   url   let   intern   run   condition   

原文地址:http://www.cnblogs.com/yangfantianxia/p/8053313.html

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