Home > CMS Tutorial > DEDECMS > body text

How to log in or log out of dedecms and jump directly to the homepage

Release: 2019-07-31 10:02:30
Original
2551 people have browsed it

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);
Copy after login

Replace it with the following code:

ShowMsg("成功登录,5秒钟后转向系统主页...","/",0,2000);
Copy after login

Then find the following code:

ShowMsg("成功退出登录!","index.php",0,2000);
Copy after login

Modify it as follows:

ShowMsg("成功退出登录!","/",0,2000);
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template