I have 2 virtual hosts like this in the config file: <VirtualHost *:80> ServerName example1.com Redirect permanent / http://www.example1.com/ </VirtualHost> <VirtualHost *:80> ServerName example2.com Redirect permanent / http://www.example2.com/ </VirtualHost> but example2.com/www.example2.com are always redirecting to www.example1.com. what am I doing wrong here? thanks