I just figured out how to do this and this is what worked for me.
1. Credit these guys from this thread for this plugin:
http://www.vbulletin.com/forum/forum...ing-to-content
Create plugin using
init_startup as the hook.
if ($_SERVER['REQUEST_URI'] == '/')
{
$vbulletin->options['friendlyurl_canonical'] = 0;
}
if ($_SERVER['REQUEST_URI'] == '/content/')
{
exec_header_redirect('/', 301);
}
2. Go to your index.php in 4.21 and change
require('forum.php');
to
require('content.php');
3. Vboptions:
CMS Component URL: Optional URL for your CMS: Put in your domain
http://www.domain.com
4. Vb Options: Friendsly urls -> Mod Rewrite Friendly URLs (on)
5. Enforce Canonical URL -> Standard
6. Friendly URL Unicode -> Convert to UTF-8
7. NCR Encode UTF-8 URLs for IE -> Yes
8. Change content tab in navigation manager to : index.php
I hope this helps because I just spent 4 hours trying to figure out a way to get it all working. Now my default content page does not have the /content/ on it.