Laravel中,如果用户已经登陆,那么若其再打开登陆页面,那么会默认自动跳转至/home路径。
要更改这个默认设置,请打开app/Http/Middleware/RedirectIfAuthenticated.php:
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Auth;
class RedirectIfAuthenticated
{
/**
* Handl
新下载了mysql,口令为空,如何修改root口令:
首先登陆mysql
use mysql;
update user set password=password('new_password') where user='root';
flush privileges;
注意需要
flush privileges;
更改Mysql root用户口令的内容小编就给大家介绍到这里,希望对大家有所帮助!
您可能感兴趣的文章:mysql root用户的密码