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