いわゆるLaravelの"Hello World!"をXAMPPでやりたいのですがエラーになってしまいます.development serverだったら動くんですが、Web系初心者なので勘所がわかりません.御教示願います.
表示させたいもの
いわゆる"Hello! World"です.
routes\web.php
php
1Route::get('hello',[HelloController::class, 'index']); 2``` 3 4app\Http\Controllers\HelloController.php 5 6````php 7<?php 8namespace App\Http\Controllers; 9use Illuminate\Http\Request; 10class HelloController extends Controller 11{ 12 // 13 public function index() { 14 // c. 出力を戻り値に 15 return 'こんにちは、 世界!'; 16 } 17} 18``` 19## development serverでの結果:表示されます. 20
PS D:\My_Documents\Proj\Elasticsearch\index-gen-laravel> php artisan serve
Starting Laravel development server: http://127.0.0.1:8000
[Fri Jan 1 15:04:40 2021] PHP 7.4.13 Development Server (http://127.0.0.1:8000) started
[Fri Jan 1 15:04:46 2021] 127.0.0.1:64987 Accepted
[Fri Jan 1 15:04:46 2021] 127.0.0.1:64988 Accepted
[Fri Jan 1 15:04:47 2021] 127.0.0.1:64988 Closing
[Fri Jan 1 15:04:47 2021] 127.0.0.1:64987 [200]: GET /favicon.ico
[Fri Jan 1 15:04:47 2021] 127.0.0.1:64987 Closing
![development serverでの結果](6298b1d4bbe3fc9c76541bb1aa1d9846.png) ## XAMPPでやってみる:エラーになっちゃいます. C:\xampp\apache\conf\extra\httpd-vhosts.conf ````xml <VirtualHost *:80> ServerAdmin tmakita@acme.co.jp DocumentRoot "D:\My_Documents\Proj\Elasticsearch\index-gen-laravel" ServerName index-gen ErrorLog "logs/error.log" CustomLog "logs/access.log" common </VirtualHost> <Directory "D:\My_Documents\Proj\Elasticsearch\index-gen-laravel"> Options Indexes AllowOverride All Require all granted </Directory>
C:\Windows\System32\drivers\etc\hosts
127.0.0.24 index-gen ``` ![XAMPPだとエラー](22c0a70ffaebe56826cd4d70c7dd7ed6.png) でも`D:\My_Documents\Proj\Elasticsearch\index-gen-laravel\server.php`はうまく行きます. ![イメージ説明](0271ee9557ae56f2b9fdf91109570f71.png) 以上 よろしくお願いいたします.
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/01 07:48
2021/01/01 07:49
2021/01/01 07:53
2021/01/01 08:06
2021/01/01 08:21
2021/01/01 11:03