vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
New vBSEO Discount Level for Network Builders Meet vBSEO Team in New York (Nov. 3rd & 4th) vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

How does this work with vBadvanced?

This is a discussion on How does this work with vBadvanced? within the General Discussion forums, part of the vBSEO SEO Plugin category; Bit confused here, wasn't even sure where to post this. I have vBSEO installed and working well, I also use ...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > General Discussion

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
  #1  
Old 03-28-2006, 08:21 AM
Member
 
Real Name: John Gonzalez
Join Date: Sep 2005
Posts: 71
Question How does this work with vBadvanced?

Bit confused here, wasn't even sure where to post this.

I have vBSEO installed and working well, I also use vBadvanced for my site.

Forums are at /forum/ vbadvanced etc is at /

I was previously using my .htaccess for rewrites of vBadvanced stuff, but I hear that vBSEO works with vBadvanced, but I do not know how.

For example, a few of my URLs are:

http://www.mini2.com/index.php?page=...rticlestart=10

(the second page of my news headlines)

http://www.mini2.com/index.php?page=newsitem&newsid=343

(news article with newsid of 343)

At present I use a very long winded way to get

http://www.mini2.com/news10.html to link to the first (using htaccess 301)

and
www.mini2.com/article343.html to link to the second.

(I have further pages, but they all follow a similar format for reviews etc.)

Now, do I, can I get vBSEO to do the rewrites, either out of the box (I understand my "fake" .hmtl links would probably have to be updated) or as custom rewrite rules?

Thanks in advance!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 03-28-2006, 10:13 AM
Member
 
Real Name: John Gonzalez
Join Date: Sep 2005
Posts: 71
Re: How does this work with vBadvanced?

This is how I work it at the moment.

RewriteRule ^news(.*).html /index.php?page=mini2news&articlestart=$1 [L,R=301]
RewriteRule ^article(.*).html /index.php?page=newsitem&newsid=$1 [L,R=301]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 03-28-2006, 12:55 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Re: How does this work with vBadvanced?

Hello,

you can use the following CRRs to rewrite these links:
Code:
'index\.php\?page=newsitem&newsid=(\d+)' => 'article$1.html'
'index\.php\?page=mini2news&articlestart=(\d+)' => 'news$1.html'
You will have to add separate .htaccess file to the site root:
Quote:
RewriteCond %{REQUEST_FILENAME} !forum/
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ forum/vbseo.php?vbseourl=$1&vbseorelpath=../&%{QUERY_STRING} [L]
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 03-29-2006, 06:05 PM
Member
 
Real Name: John Gonzalez
Join Date: Sep 2005
Posts: 71
Re: How does this work with vBadvanced?

Thank you very much!

Another (last) question on this.

I wish to redirect both sponsors.html and sponsor.html to the same page (index.php?page=directory)

When I did this:

'index\.php\?page=directory' => 'sponsors.html'
'index\.php\?page=directory' => 'sponsor.html'

It gave a "Page not found" for sponsors, but sponsor worked.

Can I make this work?

Thanks again!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 03-30-2006, 03:02 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Re: How does this work with vBadvanced?

Hello,

you can only define one CRR per URL (because the same URL cannot be rewritten to both sponsor.html and sponsors.html at the same time )
You should maintain manual rewrite rule in .htaccess for this:
Code:
RewriteRule ^sponsors?\.html$ index.php?page=directory [L]
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 03-30-2006, 03:05 PM
Member
 
Real Name: John Gonzalez
Join Date: Sep 2005
Posts: 71
Re: How does this work with vBadvanced?

OK, no problem.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 04-01-2006, 02:23 PM
Junior Member
 
Real Name: Steve Coles
Join Date: Apr 2006
Location: Apex, NC
Posts: 11
Re: How does this work with vBadvanced?

Sorry, to tag along here. I too am using vbadvanced in the root and vb in /forums. Which directory do I install vbseo to? which directory gets the .htaccess? Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 04-01-2006, 02:26 PM
Keith Cohen's Avatar
vBSEO Staff
vBSEO Total Customer SupportBig Board Administrator
 
Real Name: Keith Cohen
Join Date: Jul 2005
Location: Raleigh, NC USA
Posts: 6,265
Blog Entries: 1
Re: How does this work with vBadvanced?

Hello Steve,

vBSEO goes into your forums directory, along with the .htaccess that comes with vBSEO.

If vBadvanced CMPS is in the root, you'll need an additional .htaccess in that location, containing the information Oleg provided in the second part of his post here: How does this work with vBadvanced?
__________________
Keith Cohen / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.


My Personal Sites: My Blog | GPS Discussion Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 04-01-2006, 02:30 PM
Junior Member
 
Real Name: Steve Coles
Join Date: Apr 2006
Location: Apex, NC
Posts: 11
Re: How does this work with vBadvanced?

Quote:
Originally Posted by ConqSoft
Hello Steve,

vBSEO goes into your forums directory, along with the .htaccess that comes with vBSEO.

If vBadvanced CMPS is in the root, you'll need an additional .htaccess in that location, containing the information Oleg provided in the second part of his post here: How does this work with vBadvanced?
Thank you. You are a gentleman and a scholar. But what else would I expect from a fellow North Carolinian
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 04-01-2006, 02:38 PM
Keith Cohen's Avatar
vBSEO Staff
vBSEO Total Customer SupportBig Board Administrator
 
Real Name: Keith Cohen
Join Date: Jul 2005
Location: Raleigh, NC USA
Posts: 6,265
Blog Entries: 1
Re: How does this work with vBadvanced?

No problem.
__________________
Keith Cohen / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.


My Personal Sites: My Blog | GPS Discussion Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11  
Old 04-30-2006, 11:42 PM
Member
 
Real Name: joao barroca
Join Date: Apr 2006
Location: rio de janeiro
Posts: 80
Re: How does this work with vBadvanced?

hello,
just saing that I'm not a programmer and ask your have patient whit me...
1. my forum is install in x-trad.org/forums
2. I intall vbadvanced in site root.
then...I read this thread and I need to confirm the htacess [2!]files
file in x-trad.org/forums
Quote:
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
# linha comentada por mim RewriteEngine On
RewriteEngine On
RewriteRule ^(sitemap.*\.(xml\.gz|txt))$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums)
RewriteBase /forums
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.*)$ $1 [L]
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !chat
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
####################################
##### you can use the following CRRs to rewrite these links:
#'index\.php\?page=newsitem&newsid=(\d+)' => 'article$1.html'
#'index\.php\?page=mini2news&articlestart=(\d+)' => 'news$1.html'
I comment this 2 lines - the vbadvanced don't show avatars and images anym
more......


in site root [x-trad.org] this htacess
Quote:
####################################
##### You will have to add separate .htaccess file to the site root:####
RewriteCond %{REQUEST_FILENAME} !forums/
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ forum/vbseo.php?vbseourl=$1&vbseorelpath=../&%{QUERY_STRING} [L]
this is the right way?
my best regards,
barroca
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12  
Old 05-01-2006, 06:33 AM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Re: How does this work with vBadvanced?

Hello barroca,

these lines should NOT be entered in .htaccess:
Code:
'index\.php\?page=newsitem&newsid=(\d+)' => 'article$1.html'
'index\.php\?page=mini2news&articlestart=(\d+)' => 'news$1.html'
you should add this to Custom Rewrite Rules section in vbseocp.


You should also change:
Code:
RewriteRule ^(.*)$ forum/vbseo.php?vbseourl=$1&vbseorelpath=../&%{QUERY_STRING} [L]
to
Code:
RewriteRule ^(.*)$ forums/vbseo.php?vbseourl=$1&vbseorelpath=../&%{QUERY_STRING} [L]
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13  
Old 05-01-2006, 10:18 AM
Member
 
Real Name: joao barroca
Join Date: Apr 2006
Location: rio de janeiro
Posts: 80
Smile Re: How does this work with vBadvanced?

Tks again for your answer Oleg!
I will change as you write. And send feedback here.
Cheers,
barroca
ps. you can indicate some papers to read about htaccess and 'rewrites'?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14  
Old 05-01-2006, 10:34 AM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Re: How does this work with vBadvanced?

You are welcome!
Here is the documentation for mod_rewrite usage: mod_rewrite - Apache HTTP Server
URL Rewriting Guide - Apache HTTP Server
URL Rewriting Guide - Advanced topics - Apache HTTP Server
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Poll on vbadvanced home page - View Poll Results dazzlin Troubleshooting 3 02-16-2006 06:47 PM
vbadvanced and polls Richard Troubleshooting 2 12-04-2005 09:34 PM
conflict with vBadvanced link urls Jonathan Bug Reporting 4 08-10-2005 08:00 PM


All times are GMT -4. The time now is 11:24 AM.


Powered by vBulletin Version 3.8.0 Beta 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.