当前位置 : 主页 > 建站教程 > dedecms >

dedecms登陆后台直接转跳到首页解决办法

来源:互联网 收集:自由互联 发布时间:2021-06-20
用Dreamweaver8或者EditPlus打开/member/index_do.php 行码 388 if(empty($gourl)||eregi(action|_do,$gourl)){ 389 ShowMsg(成功登录,5秒钟后进入管理中心...,control.php,0,2000); 390 }else{ 400 ShowMsg(成功登录,转到进入
用Dreamweaver8或者EditPlus打开/member/index_do.php

行码

388 if(empty($gourl)||eregi("action|_do",$gourl)){
389 ShowMsg("成功登录,5秒钟后进入管理中心...","control.php",0,2000);
390 }else{
400 ShowMsg("成功登录,转到进入页面...",$gourl,0,2000);
修改为:

行码

388 if(empty($gourl)||eregi("action|_do",$gourl)){
389 ShowMsg("成功登录,5秒钟后进入首页...","../../",0,2000);
390 }else{
400 ShowMsg("成功登录,转到进入页面...",$gourl,0,2000);

 

网友评论
相关栏目