1、vue.config.js 里將publicPath設置成二級目錄
2、router.js 里 設置二級目錄( * vue3里使用createRouter)
3、服務器配置
apache:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^path$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /path/index.html [L]
</IfModule>
nginx:
location ^~/path{
alias /path;
try_files $uri $uri/ /path/index.html;
index index.html;
}