vue重定向和跨域配置:https://zhuanlan.zhihu.com/p/530688251
1.安装组件:
URL Rewrite:https://www.iis.net/downloads/microsoft/url-rewrite
Application Request Routing:https://www.iis.net/downloads/microsoft/application-request-routing
2.新建一个web.config 放到发布到文件夹根目录
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Handle History Mode and custom 404/500" 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>
或者在iis网站上面设置重写规则:https://www.cnblogs.com/zhoushuang0426/p/11350297.html
标签:www,Vue,iis,404,https,net From: https://www.cnblogs.com/raincedar/p/18544391