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

angular当router使用userhash:false时路由404问题

时间:2019-02-03 12:25:48      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:outer   hash   web   roc   direct   angular   out   log   组件   

angular当router使用userhash:false时路由404问题

安装iis urlrewrite2.0组件

在根目录下创建 Web.config

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

angular当router使用userhash:false时路由404问题

标签:outer   hash   web   roc   direct   angular   out   log   组件   

原文地址:https://www.cnblogs.com/francis67/p/10350018.html

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