如何修复“获取css / app.css net :: ERR_ABORTED 404(未找到)”?

时间:2019-07-28 04:26:55

标签: laravel nginx

安装了php-fpm和nginx。 该站点打开,但是CSS不想加载。 告诉我如何解决问题?

server {
    listen   80 default_server;

    root /var/www/public/;
    index index.php index.html index.htm;

    location / {
         try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
            fastcgi_pass phpfpm:9000;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
    }
}

更新:有趣的时刻。我已经安装了调试器,并且CSS正在从中加载。

/_debugbar/assets/stylesheets?v=1553506748

0 个答案:

没有答案