Laravel-Login user to view the landing page automatically jump settings

Source: Internet
Author: User
Tags auth closure

Laravel, if the user has logged in, then if they open the landing page, then the default automatically jump to the/home path.
To change this default setting, open app/http/middleware/redirectifauthenticated.php:

<?php

namespace App\http\middleware;

Use Closure;
Use Illuminate\support\facades\auth;

Class redirectifauthenticated
{
    /**
     * Handle an incoming request.
     * *
     @param  \illuminate\http\request  $request
     * @param  \closure  $next
     * @param  string|null  $guard
     * @return mixed
    /Public function handle ($request, Closure $next, $ Guard = null)
    {
        if (Auth::guard ($guard)->check ()) {return
            redirect ('/home ');
        }

        Return $next ($request);
    }

Replace the redirect ('/home ') line with the address we want the user to jump:

Return Redirect ()->route (' My-route-name ');

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.