How to redirect to separate folder in laravel?

by darrion.kuhn , in category: Third Party Scripts , a month ago

How to redirect to separate folder in laravel?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by dedrick , a month ago

@darrion.kuhn 

To redirect to a separate folder in Laravel, you can use the Redirect facade provided by Laravel.


Here's a step-by-step guide on how to redirect to a separate folder:

  1. Create a route in your routes/web.php file:
1
Route::get('/redirect-to-folder', 'RedirectController@redirectToFolder');


  1. Create a controller using the following command:
1
php artisan make:controller RedirectController


  1. In the RedirectController, define the redirectToFolder method to handle the redirection:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
namespace AppHttpControllers;

use IlluminateHttpRequest;
use IlluminateSupportFacadesRedirect;

class RedirectController extends Controller
{
    public function redirectToFolder()
    {
        return Redirect::to('/folder-name');
    }
}


Make sure to replace folder-name with the actual folder you want to redirect to.

  1. Visit the /redirect-to-folder route in your browser, and you will be redirected to the specified folder in Laravel.


That's it! You have successfully redirected to a separate folder in Laravel.