Hi,
I have a vhost entry like this:
<VirtualHost ip>
ServerAdmin webmaster.DeleteThis@domain1.de
DocumentRoot /var/www/localhost/htdocs/domain1
ServerName domain1.de
ServerAlias *.domain1.de
ErrorLog /var/log/domain1.de-error.log
CustomLog /var/log/apache/domain1.de-access.log common
</VirtualHost>
Now I want - when domain1.de is called - a redirection to another server to
be performed.
So, content should not be looked up in
/var/www/localhost/htdocs/domain1
anymore, but in sth. like
www.domain2.de/index.html
where domain2.de is on another machine.
Is sth. like that possible ?
Thanks.