It changes the new domain's URL when loaded in the browser from this:
http://www.newdomain.com/gdProfile.php?clientID=23
To this which is incorrect:
http://www.newdomain.com/index.php?clientID=noneOrNAN
I've tried the hosts cpanel redirect feature, and manually edited the .htaccess file, and both give the same results.
Here is what I used for the manual editing of the htaccess..
Code: Select all
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/gdProfile.php?clientID=23/$1 [R=301,L]
What on earth is causing this??
Thanks!