Replies: 5 comments
-
你可以引入vue-router |
Beta Was this translation helpful? Give feedback.
-
vue-router应该只是一个git项目内能有效的吧 你这个首页项目不能和别的git项目混一起,而且是那种免费静态服务器上的好像更没有了 |
Beta Was this translation helpful? Give feedback.
-
@aogg @bkf777 抱歉,目前不考虑同域名下放置其他页面,若有需求,可以考虑使用服务器端路由,比如 express 的路由 app.get('/other-directory', (req, res) => {
res.sendFile(path.join(__dirname, 'other-directory', 'index.html'));
});
|
Beta Was this translation helpful? Give feedback.
-
这种情况一般都只能用反代来处理。而且有不少开源项目是不支持二级路径的,比如helo。 个人理解,只要html页面里面的请求路径写的是 |
Beta Was this translation helpful? Give feedback.
-
是的,这样只能通过在服务器端开一个node服务或者其他的服务,将不同的项目放在不同的页面下,通过不同的路由来访问,然后通过反代来支持域名访问 |
Beta Was this translation helpful? Give feedback.
-
站点链接
https://github.com/imsyy/home
问题描述
No response
补充信息
不用多域名的情况下
Beta Was this translation helpful? Give feedback.
All reactions