I'm moving site A to site b (and site b is a new site) so I wanted to move everything from a, to b. To that end, I put the following in my apache file:
<VirtualHost *:80>
ServerName www.domainA.com
Redirect 301 / [
domainb.com...]
</VirtualHost>
But when I type in www.domaina.com, I see the content for domain b, the the url doesn't change - I'm still at domain a.
Any ideas on what I'm missing? I'd like to actually bounce the url to domain b, I figured that's what a 301 did.