關鍵字描述:解決 辦法 首頁 直接 登陸 后臺 " gourl 登錄
這個功能類似于俠客站長站,登錄會員后臺,跳轉到 http://www.jb51.net/member/ ,而不是跳轉到會員管理中心面板。
用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);