php 服务器
php服务器的根目录下添加.htaccess文件
RewriteEngine OnRewriteBase /RewriteRule ^index\.html$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.html [L]
node服务器
官方推荐 connect-history-api-fallback 插件
注意:使用插件相关的代码要放在所有路由的后面,比如多页面布置要特别注意
/*....*///新增的管理员登录页面页面app.get('/manage', function(req, res) {const html = fs.readFileSync(path.resolve(__dirname, './www/manage.html'), 'utf-8')res.send(html)})app.get('*', function(req, res) {const html = fs.readFileSync(path.resolve(__dirname, './www/index.html'), 'utf-8')res.send(html)})app.listen(3000)
