I am having some issues with integrating vbSEO on VB 4.1.1.
I have the custom rewrite rules in place, however there seem to be few things not working.
For reference here are the rules I am running
Code:
'^vbglossar\.php\?do=toc$' => 'kb/toc/'
'^vbglossar\.php\?do=showentry&item=(.+)' => 'kb/tag/$1/'
'^vbglossar\.php\?do=showentry&id=(\d+)&title=(.*)&catid=(\d+)&cattitle=(.*)'=>'kb/$3-$4/$1-$2.html'
'^vbglossar\.php\?do=(.*)&id=(\d+)&title=(.*)&catid=(\d+)&cattitle=(.*)'=>'kb/$2-$3/$1-$5-$4/'
'^vbglossar\.php\?do=showcat&catid=(\d+)&cattitle=(.*)'=>'kb/$1-$2/'
'^vbglossar\.php'=>'kb/'
The following URL's are failing:
1.)
http://www.performanceboats.com/kb/1...-destinations/
If I edit it to this
http://www.performanceboats.com/kb/1...+destinations/ it works.
2.)
http://www.performanceboats.com/kb/1...ke-havasu.html
Like number 1 if I change the - to a + in both boating-desination and lake-havasu it works.
3.)
http://www.performanceboats.com/kb/tag/Lake+Havasu/
The last one there is a result of clicking through from a tag in a post. I have vbseo integration turned on in the settings as well. Anyone else seeing this?