您的位置:首页 > 产品设计 > UI/UE

vuejs router history 配置到iis

2017-05-16 15:44 671 查看
先用web平台安装程序安装url rewrite

然后新建web.config在网站根目录下

写如下:

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <system.webServer>

        <rewrite>

            <rules>

    <rule name="Angular Rule" 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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  vuejs vuerouter iis history