Okay, I thought I had it, but apprently not. I stuck this code in global_start:
PHP Code:
if(THIS_SCRIPT == 'showthread') {
if(!isset($_GET['is_vrewrite'])){
//Let's see if we're doing a thread, or a post.
$threadid = $_GET['t'];
if(!empty($threadid)) {
$thread = $vbulletin->db->query_first("SELECT title, forumid FROM " . TABLE_PREFIX . "thread WHERE threadid='$threadid'");
$title = $thread['title'];
$fid = $thread['forumid'];
$f = $vbulletin->forumcache[$fid];
$fid = $f['forumid'];
$ftitle = $f['title'];
exec_header_redirect("$ftitle/$title-$threadid.html");
}
else
{ die('we are on a post'); }
}
}
But its redirecting as the forums over and over, but how can that be if its not in a while? :S