我是laravel的新人。我的朋友给了我一个学习的项目,但是当我在我的localhost上设置该项目时,我收到了一些错误。任何人都可以帮我在我的电脑上设置该项目。 我上传了服务器文件代码[在此处输入图像说明] [1]
**
错误:警告:require_once(C:\ wamp64 \ www \ hazir / public / index.php):无法打开流:C:\ wamp64 \ www \ hazir \ server中没有此类文件或目录。第21行的php致命错误:require_once():无法在C:\ wamp64 \中打开所需的'C:\ wamp64 \ www \ hazir / public / index.php'(include_path ='。; C:\ php \ pear')第21行的www \ hazir \ server.php
**
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';
答案 0 :(得分:0)
您似乎更改了Laravel应用并创建了文件server.php
。并通过Laravel的公共目录上的URI访问文件。不幸的是,这不是Laravel应用程序的工作原理。
我认为您正在使用Wampserver,使用此功能,可能会在您的计算机上设置Laravel应用时遇到一些麻烦。我强烈建议您使用Laragon或Laravel创建Homestead