Forum Moderators: phranque
I recently created a site using vbulletin software. I created a blog also using wordpress on a subdomain.
The blog got indexed in google fine but the forum didnt, so i decided to do a server side redirect to the forum from the blog about three weeks after go live, but it is still not being indexed correctly
my .htaccess file looks like this:
Options +FollowSymLinks
# turn on rewrites.
RewriteEngine on
# send index.php to root
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.example.com/ [R=301,L]
# send example.com to www.example.com
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
RewriteBase /
# notfound page
ErrorDocument 404 /notfound.html
does anyone see anything wrong with that? i have also removed the redirects from the blog now and taken down that domain...
the forum is located at http://www.example.com
[edited by: jdMorgan at 1:38 pm (utc) on June 19, 2009]
[edit reason] example.com [/edit]
If you have removed the redirects from your blog and have taken down its (sub)domain, then your previous redirection is no longer in effect, and the forum will no longer benefit from it. The forum will have to stand alone on the strength of its own backlinks -- and really, this is as it should be, since a blog and a forum are two very different things. If your site does not have high pagerank, and if the forum is not well linked-to from third-party sites, then it may take quite awhile for it to get indexed. While Google returns search results in milliseconds, index-related activities often take months...
Jim