You can redirect with header location to the home page or whenever you want. However I am not sure either it is appropriate way or not. But if it is so than you need to write just simple code with header location at the top of your theme file.
function doctype()
{
if(($this->template == 'users') AND (qa_get_logged_in_level() < QA_USER_LEVEL_ADMIN)){
header('Location: '.qa_path_html('qa').'');
}
qa_html_theme_base::doctype();
}
I also would like to know either this is correct way or not?