nginx下配置vue前端项目


server {
listen 80;
server_name _;
root /opt/h5/index/;
location / {
index index.html index.htm index.php;
if (-f $request_filename/index.html){
rewrite (.) $1/index.html break;
}
#if (-f $request_filename/index.php){
# rewrite (.
) $1/index.php;
#}
#if (!-f $request_filename){
# rewrite (.*) /index.php;
# }
if (!-e \(request_filename) { rewrite ^(.*)\) /index.php?s=/$1 last;
}
}
error_page 404 403 500 502 503 504 /404.html;
location = /404.html {
root /;
}
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM