vue模式history下在iis中配置流程

这篇文章主要介绍了vue模式history下在iis中配置流程,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下

1.npm run build生成代码加密

2.在iis添加网站定位到dist文件下

第三步第四步配置是一直重新刷新会出现404问题

3.安装URL重写

https://www.iis.net/downloads...

4.在dist文件下配置web.config

<system.webServer> <rewrite> <rules> <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="https://www.jb51.net/" /> </rule> </rules> </rewrite>

   </system.webServer>遇到一个问题:多访问几次页面或者端口应用程序池的状态会结束(事件ID5002,错误503),原因是后台占用内存太大,解决方法:要勾选预编译并发布版本。

总结

以上所述是小编给大家介绍的vue模式history下在iis中配置流程,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1e9ee3f5df753abb0aa9704bd096dc25.html