Ich habe mit mod_proxy definiert das http://www.test.at auf http://www.test2.com leiten soll. Leider klappt dies nicht, und so leitet der Apache proxy auf die Default seite des Apache webservers.
OS ist Debian Etch btw.
Ich bin planlos, ich finde auch via google nichts zu diesem Problem.
Vielen Dank für jede hilfe.
OS ist Debian Etch btw.
Ich bin planlos, ich finde auch via google nichts zu diesem Problem.
Proxy.conf
ProxyRequests Off
<Proxy *>
AddDefaultCharset Off
Order deny,allow
Allow from all
</Proxy>
ProxyPass /http://www.test.at http://www.test2.com
Test.at
<VirtualHost *>
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /test.at http://www.test2.com
ProxyPassReverse /test.at http://www.test2.com
</VirtualHost>
Vielen Dank für jede hilfe.