Laravel 5 /重新安装laravel 5后出现主页错误

Laravel 5 /重新安装laravel 5后出现主页错误,laravel-5,Laravel 5,所以我刚刚安装了新的Laravel5,并设法毫无问题地转到“/”uri 但是当我转到defaultroutes.php中列出的“home”时,我得到了这个错误 ErrorException in functions.php line 17: Missing argument 1 for redirect(), called in /Applications/MAMP/htdocs/learning-l5/app/Http/Middleware/Authenticate.php on line 4

所以我刚刚安装了新的Laravel5,并设法毫无问题地转到“/”uri

但是当我转到defaultroutes.php中列出的“home”时,我得到了这个错误

ErrorException in functions.php line 17:
Missing argument 1 for redirect(), called in /Applications/MAMP/htdocs/learning-l5/app/Http/Middleware/Authenticate.php on line 43 and defined

怎么了?

错误表明您缺少重定向()的参数。这似乎与您的问题的其余部分无关。我猜您在functions.php的第17行有一个ErrorException。我发现了这个问题。这是由我的MAMP php.ini文件引起的。我以前被设置为auto_prepend_file=/path/to/file,以便在任何请求之前加载全局设置。谢谢