Home > Article > CMS Tutorial > How to log in or log out of dedecms and jump directly to the homepage
By default, dedecms members will jump directly to the member center after logging in. The same is true for logging out. But if we want members to jump directly to the homepage after logging in or logging out, How to achieve this?
After our research, we have found a solution. The following are the detailed modification steps:
First find index_do.php in the member directory file, find the following code in it:
ShowMsg("成功登录,5秒钟后转向系统主页...","index.php",0,2000);
Replace it with the following code:
ShowMsg("成功登录,5秒钟后转向系统主页...","/",0,2000);
Then find the following code:
ShowMsg("成功退出登录!","index.php",0,2000);
Modify it as follows:
ShowMsg("成功退出登录!","/",0,2000);
In this way, Dreamweaver dedecms Members will jump directly to the home page when logging in or logging out.
Recommended: dedecms usage tutorial
The above is the detailed content of How to log in or log out of dedecms and jump directly to the homepage. For more information, please follow other related articles on the PHP Chinese website!