Can someone help me with url redirect/rewrite?
- example.com/url/* --> newdomain.com/new/path/url/* not showing the forwarded url
- example.com/* --> newdomain.com/new/path/to/go/* not showing the forwarded url
- example.com --> newdomain.com showing forwarded url
I've tried RedirectMatch or Rewirite Rules in the VHost file...
- RedirectMatch ^/url/(.*)$ http://newdomain.com/new/path/url/url/$1
- RedirectMatch ^/(.*)$ http://newdomain.com/new/path/go/$1
- RewriteEngine on RewriteCond %{HTTP_HOST} ^example.com$ RewriteRule ^(.*)$ http://newdomain.com/$1
Thanks for help!!