vue-router history模式,服务器配置后,访问报500错误

发布于 2022-09-11 19:49:36 字数 1813 浏览 18 评论 0

我的web服务器有二级目录promotion,于是配置了routerconfig

//项目源码目录/src/router/index.js
import Vue from "vue";
import Router from "vue-router";
import notFound from "@/components/notFound";
import index from "@/views/index";

Vue.use(Router);

export default new Router({
  mode: "history",
  base:"/promotion/",
  routes: [
    { path: "*", component: notFound },
    {
      path: "/index",
      name: "index",
      component: index
    }
  ]
});
//项目源码目录/config/index.js
build: {
    // Template for index.html
    index: path.resolve(__dirname, '../dist/index.html'),

    // Paths
    assetsRoot: path.resolve(__dirname, '../dist'),
    assetsSubDirectory: 'static',
    assetsPublicPath: '/promotion/',
}

服务器用的IIS管理,网站根目录配置了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="/promotion/" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

最终访问地址,域名/promotion/index,页面报了500错误,这是什么原因?怎么解决?

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城花音 2022-09-18 19:49:36

router中配置的base:"/promotion/"去掉

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文