I'm using vbAdvanced and all I did was edit the adv_portal template for my mobile style and replaced the contents with
Code:
$stylevar[htmldoctype]
<html>
<head>
<title>$vboptions[hometitle] <if condition="$pagetitle">- $pagetitle</if></title>
$headinclude
</head>
<body>
$header
$navbar
<div><a href="forum.php">Click here to go to the forums!</a></div>
$footer
</body>
</html>
You could however replace it with a meta redirect such as:
HTML Code:
<html>
<head>
<title>Redirecting to mobile friendly</title>
<META http-equiv="refresh" content="2;URL=http://URL_TO_FORUM_HOME">
</head>
<body>
<p>
Redirecting to mobile site...
</p>
</body>
</html>