我需要有关配置IIS服务器和Vue 2应用程序的帮助,我刚刚在vue 2 application
上安装了Windows IIS 7 server
生产版本,并且一切正常,只有一件事不起作用:
当我尝试打开任何包含链接" example mysite.com/somepage
"的页面时用vue-router写的,我看到404 error
,但如果我点击菜单链接工作正常,如果你只输入主url mysite.com它将打开,但任何其他路由不工作!
我想我需要设置我的httpRedirect或类似的东西!
答案 0 :(得分:5)
根据您的信息,我假设您使用的是history
模式,这是我一直在使用的模式,您可以参考here:
<?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="index.html" />
</rule>
</rules>
</rewrite>
<httpErrors>
<remove statusCode="404" subStatusCode="-1" />
<remove statusCode="500" subStatusCode="-1" />
<error statusCode="404" path="/survey/notfound" responseMode="ExecuteURL" />
<error statusCode="500" path="/survey/error" responseMode="ExecuteURL" />
</httpErrors>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
答案 1 :(得分:5)
如vue-router documentation所述,要使用历史记录模式,您需要执行以下操作: