Redirection using HTACCESS is working fine on the server but not on the Sub Domain. I used the following HTACCESS code for the redirection task:
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^user/(.+)$ done.php?info=$1
http://site.com/user/123/USA to http://site.com/done.php?info=123/USA
Does any changes needed on the Sub Domains to work this HTACCESS code?
http://test.site.com/user/123/USA to http://test.site.com/done.php?info=123/USA