外部CSS在Laravel 5.5中不起作用

时间:2018-07-21 07:16:13

标签: php laravel nginx

我为Laravel 5.5完成了全新安装,并为auth运行了一个命令

php artisan make:auth

创建几个文件时,当我点击由auth创建的端点/ home时,除了css不能正常工作,而且在控制台中收到此警告,它运行正常

Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://zrehan.meal.com/css/app.css".

关于此,我读了很少的SO问题和文章,但它们似乎都不起作用,这与nginx conf有关吗?

我粘贴了我的nginx conf。

server {
    listen       80;

    root /home/zrehan/projects/meal/;
    index index.html index.php server.php;

    server_name  zrehan.meal.com  meal.com;

    location / {
        try_files $uri $uri/ /server.php?$query_string;
    }
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php7.1-fpm.sock;
    }
}

注意: 在laravel 5.5上运行php7.1

0 个答案:

没有答案