Hi,

I am trying to integrate vbet with reviewpost. First, I tried simply doing a vBetTranslatePage call on the page output, but that didn't work due to redirection.

I then followed the instructions here, step by step:
http://www.vbenterprisetranslator.co....html#post1795

However, I'm still getting the redirection errors. I've tried this before for photoplog and also wasn't successful. Since my htaccess modifications failed, could you give me some pointers?

Root htaccess:

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.pentaxforums\.com
RewriteRule (.*) http://www.pentaxforums.com/$1 [R=301,L]

RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{Script_FILENAME} !-f
RewriteRule ^(.*)$ index.php?a=$1 [L]
reviewpost htaccess:

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.pentaxforums\.com
RewriteRule (.*) http://www.pentaxforums.com/lensreviews/$1 [L,R=301]

RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /forums/vbseo.php?vbseourl=$1&vbseorelpath=../lensreviews/&%{QUERY_STRING} [L]
I tried putting the htaccess additions both before and after the vbseo rule, but it had no effect. Any ideas?