I am using IIS for laravel. I succesfully installed laravel and also running it using localhost and remote IP with php artisan serve command. The issue is, the base folder is running smoothly, but whever I am creating a folder inside it with laravel codes, it shows not found. So the issue is, I cannot redirect it to the childer folder content where I have kept the website codes.
For your information:
The child project has no database connection hing, only a simple website built on laravel platform.
This is that I have wrote inside route/web.php
Route::get('/', function () {
return view('welcome');
});
Route::get('/MCS', function () {
return "My Child Project";
});
MCS is my child project folder. To confirm the solution is able to find the folder, i wrote “My Child Project”. and its returning properly. But I don’t know, how to go further to show the default page inside MCS folder…