I have this code in my .htaccess (default of my PHP site) and would like to redirect my users when accessing by cell, for a specific URL.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
RewriteCond %{HTTP_ACCEPT} "text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^ http://pipocaplayfm.com/new-releases%{REQUEST_URI} [R,L]
</IfModule>