宝塔7.6.0去除登陆限制,及强制跳转 /bind解决方法
“
去除登录sed-i"s|if(bind_user=='True'){|if(bind_user=='REMOVED'){|g"/www/server/panel/BTPanel/static/js/index.js
”

去除登录
sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js
去除强制跳转 /bind
rm -f /www/server/panel/data/bind.pl
71