Я новичок в Laravel.Теперь я хочу запустить проект laravel на localhost.Теперь, что я сделал?Я создал index.blade.php
файл внутри resource/view/index.blade.php
и изменил web.php
файл внутри routes/web.php
routs / web.php
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('index', function () {
return view('index');
});
resources / view / index.blade.php
<!doctype html>
<html>
<head>
<title>Demo</title>
</head>
<body>
<h1>Laravel start</h1>
</body>
</html>
Я изменил server.php
на index.php
и переместил файл .htaccess
из public
в корневой каталог и перезапустил apache
сервер.но это показывает мне 500 Internal Server Error
.Я запустил localhost/laravel
, но он не работает.Итак, как я могу решить эту проблему?Пожалуйста, помогите мне.
Произошла ошибка
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at webmaster@dummy-host2.example.com to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.4.29 (Win32) OpenSSL/1.0.2l PHP/5.6.32 Server at localhost Port 80
Спасибо