I've a simple question, so here it is. I was wondering how to make a simple redirection, I've wamp installed on my computer and I wish I could do that: When I go to abc.com it redirect to xyz.com. I did this in the httpd.conf file .. But it isn't working
<VirtualHost *:80 >
ServerName abc.com
Redirect permanent / http://www.xyz.com/
</VirtualHost>
Thank you!