I am looking to redirect any page from my zencart to an addon domain suchas mobi.myzencart.com

I added this to my htaccess file in the website root directory.

Code:
RewriteEngine On
RewriteCond %{QUERY_STRING} !^desktop
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|googlebot-mobile|iemobile|iphone|ipod|#opera mobile|palmos|webos" [NC]
RewriteRule ^$ http://mobi.mywebsite.com [L,R=302]
It works wonderul for the main page of my website, but does nothing for any other page. I even added it to the htaccess file for the directory where zencart is installed, and still no luck.

Apart from adding javascript to the head file, is there some other way using htaccess?

Thanks