赞
踩
在history模式下,开发环境中各页面的访问都正常。但是在生产环境只能访问首页(刷新404),其他页面的访问和刷新全都是404。而在hash模式下开发环境和生产环境路由跳转均无问题。
location / {
try_files $uri $uri/ /index.html;
#检测文件存在性,重定向到首页目录,防止404。
}
使用中间件
//解决vue-router的history模式下,页面刷新后not found的问题
const history = require('./middleware/koa2-connect-history-api-fallback');
app.use(history({
verbose: true //打出转发日志
}));
//引入中间件
const history = require('connect-history-api-fallback');
//使用中间件
app.use(history());
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。