微擎登录后直接跳转到人人商城后台,退出登录跳到直接进入地址
直接跳转到人人商城后台 在/web/source/user/login.ctrl.php (很容易定位到:欢迎回来处) if ($_W['isajax']) { if($_GPC['kc']=='es'){ $forward=url('site/entry/web',array('m'=>'ewei_shopv2')); iajax(0, "操作成功!", $forward); } else{ iajax(0, "欢迎回来,{$record['username']}", $forward); } } 地址栏目输入标志为:kc=es /web/index.php?c=user&a=login&kc=es 退出登录跳到直接进入地址 在/addons/ewei_shopv2/template/web_v3/_header.html 中添加退出标志位 <li data-toggle="tooltip" data-placement="bottom" title="退出登录" data-href="{$system['right_menu']['logout']}forward=/web/index.php?kc=es"> <a class="wb-header-logout"><i class="icow icow-exit"></i></a> </li> /web/common