问答详情
源自:2-1 使用Composer安装Laravel

当访问 192.168.43.140/laravel01/public/ 的时候返回 目前无法处理此请求。 HTTP ERROR 500

http://img.mukewang.com/58c8a37300011a0810740602.jpg

如图所示,很奇怪呀  都坚持到这儿了  却出了这么个问题

提问者:优雅秋风 2017-03-15 10:14

个回答

  • 冰镇酸梅
    2017-08-16 15:04:15

    看看 有没有 vendor目录  没有执行

    1. php composer.phar install //我的composer不是全局 如果错误可能是缺少某些扩展 请看提示安装扩展 再重复此操作 一般就好了 

    2.  可能还会出现Runtime....错误 可百度 

  • qq_费劲_0
    2017-04-13 17:20:59

    我的虚拟机 ifconfig出的ip+/laravel/public/ 可以访问

    但是nginx 配置 test.laravel.com 之后就访问不了

    server {  

        listen 80;   

        server_name test.laravel.com;   

        root /data/html/laravel/public;  

        index index.html index.php;  

        location / {       

                 try_files $uri $uri/ /index.php$is_args$query_string;
        }   

        location ~ \.php$ {       

                try_files $uri =404;      

                fastcgi_pass 127.0.0.1:9000;      

               fastcgi_index index.php;       

                 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;      

               include fastcgi_params;
       }
    }

  • qq_Graveburnpap_0
    2017-03-16 17:08:44

    路由定义出了问题