# 宝塔面板虚拟主机配置片段 # 请将以下 location 配置添加到您的虚拟主机配置文件中 location /super { alias /www/wwwroot/你的网站目录/dist; # 请修改为实际的网站目录路径 try_files $uri $uri/ /super/index.html; index index.html; # 静态资源缓存 location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { expires 1y; add_header Cache-Control "public, immutable"; } # Enable CORS (如果需要) # add_header 'Access-Control-Allow-Origin' '*'; # add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; # add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; # if ($request_method = 'OPTIONS') { # add_header 'Access-Control-Max-Age' 1728000; # add_header 'Content-Type' 'text/plain charset=UTF-8'; # add_header 'Content-Length' 0; # return 204; # } }