laginvel项目有nginx错误

时间:2018-02-01 01:14:21

标签: laravel nginx

我已将我的laravel项目上传到远程linux主机。这个项目在我的本地windows homestead上运行良好。但是当我把它放在linux主机上时,它不起作用。 项目根目录是:/ var / www / html / blog。 nginx配置如下:

`server
    {
        listen 80;
        #listen [::]:80;
        server_name www.antichina.us ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /var/www/html/blog/public;

       # include other.conf;
        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include enable-php.conf;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }



        access_log off;
    }
`

当我使用域访问项目时,(http://mydomain),it给出了http 500错误。但是当我在nginx配置文件中将root设置为/ var / www / html / blog时,索引页面的项目正在访问:http://mydomain/public,其他路由都返回404错误。

我已经尝试了我的方法,但似乎没有工作。任何关于ecould帮助我?谢谢!

1 个答案:

答案 0 :(得分:0)

将此添加到您的nginx配置

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

您的索引行也只需要这样:

index index.php;

此文件中包含哪些内容?

include enable-php.conf;