Hi, I want to redirect dynamic incoming url to dynamic outgoing url. Here is my example. Url enter: http://www.domain.com/go.php?id=[COLOR="Red"]xxxxx[/COLOR] Redirect to: http://www.newdomain.com/link/[COLOR="Red"]xxxxx[/COLOR]/ Code (markup): What code do I have to put in my .htaccess? Is is possible to do this? Or, Is there alternative way to do this? Thank you.
RewriteCond %{QUERY_STRING} ^id=([A-z0-9]+)$ RewriteRule ^go\.php$ http://www.newdomain.com/link/%1/? [R=301,L] Code (markup):