I'm no expert in this area, but I'm guessing that:
Code:
RewriteCond %{HTTP_HOST} !^www\.ontrackdriver\.com
RewriteRule (.*) http://www.ontrackdriver.com/$1 [L,R=301]
is the issue. If it is what it looks like, it is redirecting all URL's which are NOT
www.ontrackdriver.com to
www.ontrackdriver.com
This would indeed redirect m.ontrackdriver.com to
www.ontrackdriver.com
VBSEO would do this as it is good SEO to only have content listed on a single domain name, in this case it's
www.ontrackdriver.com. I'd suggest changing this to:
Code:
RewriteCond %{HTTP_HOST} !^ontrackdriver\.com
RewriteRule (.*) http://www.ontrackdriver.com/$1 [L,R=301]
This will then redirect URL's which don't have the www, but leave all others alone. The only other there will be is m.ontrackdriver.com and we don;t want this redirected anyway.
As I said, I'm no expert in this, so rather than delete the lines, copy then and then comment out the originals with a leading '#' character to make reversal easy if need be. You could even do a quick initial test by just commenting out that section altogther before editing.
hope this helps