0

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!

1 Answers1

0

Enable loggin (CustomLog,ErrorLog) and provide that output information. I'm using same kind of redirect and it works for me no problem.

alexus
  • 13,667