当前位置 主页 > 网站技术 > 代码类 >

    Vue项目打包部署到iis服务器的配置方法

    栏目:代码类 时间:2019-11-11 12:03

    一 将Vue项目打包

    切换到项目目录下,输入cnpm run build 打包


    在这里插入图片描述

    等待打包完成


    在这里插入图片描述

    二 URL 重写

    访问我们的一个url

    原因是vue不是根据项目目录的地址访问的,是根据vue-router转发路由访问url,在这里我们应该进行url rewrite
    url write的方式有两种,一种是在iis下载url rewrite工具配置规则

    另一种是配置web.config文件,我用的是第二种

    web.config内容

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
     <system.webServer>
     <staticContent>
      <remove fileExtension=".woff" />
      <mimeMap fileExtension=".woff" mimeType="font/x-woff" />
      <remove fileExtension=".woff2" />
      <mimeMap fileExtension=".woff2" mimeType="font/x-woff2" />
      <remove fileExtension=".ttf" />
      <mimeMap fileExtension=".ttf" mimeType="font/x-ttf" />
      <remove fileExtension=".json" />
      <mimeMap fileExtension=".json" mimeType="text/json" />
     </staticContent>
     <rewrite>
      <rules>
      <rule name="vue" 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>

    将该文件拷贝到打包好根目录下面

    在这里插入图片描述

    发现成功访问到我们的url


    在这里插入图片描述

    总结

    以上所述是小编给大家介绍的Vue项目打包部署到iis服务器的配置方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对IIS7站长之家网站的支持!
    如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!