Removing VBSEO for vbulletin – Reverting back to vbulletin URLs


 
Thread Tools Search this Thread
Top Forums Web Development Removing VBSEO for vbulletin – Reverting back to vbulletin URLs
# 29  
Old 10-28-2013
As you can see, it can take a lot of work to find all the 404 errors and create the mod_rewrite rules when a product like vBSEO is removed / decommissioned.

There are even more rules... I will post some of those later.... stay tuned!
# 30  
Old 10-28-2013
Yes seeing this, this would apply to your forums alone no? It does give me a good example as to how much I despise VBSEO though eheheh.
# 31  
Old 10-28-2013
As I mentioned before, each forum is configured differently. vBSEO had a lot of switches and many configuration options.

You have to look at your 404 errors and devised your own rewrite rules...

These are only examples from our work (as mentioned before).

Your must look at your 404 errors and devise your own plan.
  1. Set up a test forum that mirrors your live forum.
  2. Look at the access.log in your live forum for 404 errors.
  3. Take those 404s and feed them to your test forum.
  4. Experiment with rewrite rules on the test forum until you are happy.
  5. Repeat for all 404 issues.
# 32  
Old 10-29-2013
Got some email and private messages how there should be some magic "one liners" that can rewrite all the 404s "file not found" errors when all the URLs of a forum change when they remove vBSEO.

Some, oddly enough, who have no experience with vBSEO (or rewriting all the URLS of a forum with a half a million pages indexed in Google) seemed to find my very clear explanation of how to change 404s to 301s cryptic, as if their is some "magic bullet" that works for all forums.

In my original post, I gave "the core examples" (from the now defunct vBSEO web site) about rewrite URLs for forum threads. There are three different examples based on three different vBSEO configuration.

However, a forum has a lot more pages than "threads". There are forum pages, and forum indexes, and archives and archive indexes, and there are single posts and their are RSS feeds and their are other pages where the URLs were rewritten by vBSEO.

If the vBSEO product is removed, all of these links, indexed in search engines, will break, and cause a 404 error. Each of these URLs need to be properly rewritten based on how the forum vBSEO setup was configured. There are many configuration switches for vBSEO, so there is not one "magic bullet" mod_rewrite rule which will work for every forum. Even 100 rewrite rules for our forums will not work for another forum because their configuration is different.

So, having said this; I outlined how to correctly do this; and obviously the method I outlined worked because our forums (this forum) has actually seen an increase in traffic and (so far) no negative SEO hit after removing vBSEO. Our traffic has increased since removing vBSEO.

Did the traffic increase because we removed vBSEO and there was some "magic bullet" one or two liner mod_rewrite rule that magically worked for posts, threads, forums, index pages, archives, print friendly pages, archive indexes, forum indexes, and more?

No, removing vBSEO without careful planning and observing 404 errors and then writing mod_rewrite rules to insure the old vBSEO URL were correctly 301'ed to working forum pages is not a trivial task.

This is why many people who have removed vBSEO and tried to use a quick "one or two liner" mod_rewrite rule have seen their search referral traffic drop. That is not what happened here. Our search referral traffic has actually increased since removing vBSEO because of careful mod_rewrite rule implementation via the technique outlined in earlier posts.

And don't forget that it is important to property use the canonical directive when doing a move like this. Search engines need to know that pages with duplicate content (old URLs and new URLs that point to the same content) have a pointer to the "authority" page, the canonical page.
# 33  
Old 01-05-2014
Update:

We installed DBSEO by DragonByte and went back to our original vBSEO URLs, but using DragonByte SEO (DBSEO).

So far, even though DBSEO is still in "beta" we like it much better than vBSEO.

Because of DBSEO, we were able to remove all the 301 redirects we wrote to counter problems from the "death" of vBSEO.

So far, we recommend DBSEO to everyone who was a former vBSEO user.
This User Gave Thanks to Neo For This Post:
# 34  
Old 01-16-2014
THANKS!

THANKS NEO!

I was looking for a solution for my broken links cause of TFSEO.

It is a plugin which is like VBSEO.

I modified your codes and it worked for me.

I could fix my broken links.

Thank you for sharing your experience/knowledge with us.
# 35  
Old 01-27-2014
Hey guys, I found your forum while searching for vBSEO + nginx configuration. It's awesome that you are providing rewrites to revert back to old vbulletin urls. Since vBSEO is still functional and I want to use nginx, could someone help me out here?

vBSEO provided these nginx rules:

Code:
location /forums/ {
rewrite ^/forums/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last;

try_files $uri $uri/ /forums/vbseo.php?$args;
}

location ~ /forums/(.*\.php)$ {
rewrite ^/forums/(.*)$ /forums/vbseo.php last;
}
location /forums/vbseo/(includes|resources/html|resources/xml)/ {
	allow      127.0.0.1;
	deny      all;
}

But they don't work. Can someone help me out here?

Also, since vBSEO is still functional, why did you "decommission" it?

Edit: I was able to fix it; "html" files were being served as static files and my seo urls had .html at the end.

Last edited by goldenboy48; 01-27-2014 at 10:42 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

vbulletin addon for ads?

i'm wondering what vbulletin addon is used here to manage ads if the admin could let me know :) (1 Reply)
Discussion started by: disgust
1 Replies
Login or Register to Ask a Question