You could create a new group banned, or if it is, use the same statement from the frames tutorial,and redirect them to the new page. _xfRedirect. is used to redirect.
php
<xf:if is="{$user.user_group_id} == 6">
return $this->responseRedirect(
XenForo_ControllerResponse_Redirect::SUCCESS,
XenForo_Link::buildPublicLink('forums', $forum),
new XenForo_Phrase('forum', array('forum' => $forum['title']))
);
Or easiers make a redirect rule.
RewriteRule ^(threads|forums|members|banned)/(.*)$ /community/$1/ [R=301,L]
Its an example and wont work.Is to get you to the idea