Jireh程序猿的那些事 Jireh程序猿的那些事

记录分享生活、程序、信息的精彩人生

目录
Vue项目发布到Nginx上出现404错误
/    

Vue项目发布到Nginx上出现404错误

Vue项目发布到Nginx上出现404错误

解决方法

在配置文件当中加入

try_files $uri $uri/ /index.html;

完整实例:

server
{
    listen 80;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/website;
    try_files $uri $uri/ /index.html;
}

如果觉得这篇文章不错的话,请我喝一杯 咖啡☕吧
标题:Vue项目发布到Nginx上出现404错误
作者:Jireh
地址:https://jireh.xyz/articles/2021/07/23/1627022300007.html
本作品由 Jireh 采用 署名 – 非商业性使用 – 禁止演绎 4.0 国际许可协议进行许可,转载请注明出处。