Discuz! 出现“您当前的访问请求当中含有非法字符“解决方法

\source\class\discuz的discuz_application.php

替换

private function _xss_check() {
                $temp = strtoupper(urldecode(urldecode($_SERVER['REQUEST_URI'])));
                if(strpos($temp, '<') !== false || strpos($temp, '"') !== false || strpos($temp, 'CONTENT-TRANSFER-ENCODING') !== false) {
                        system_error('request_tainting');
                }
                return true;
        }



或使用官方方法解决: http://www.discuz.net/thread-3485502-1-1.html

你可能感兴趣的:(Discuz! 出现“您当前的访问请求当中含有非法字符“解决方法)