Einzelnen Beitrag anzeigen
  #3  
Alt 24.06.08, 07:47
wech wech ist offline
Forum Zuschauer
 
Registriert seit: 20.06.08
Alter: 31
Beiträge: 10

Also Problem gelöst. Die Domain die umgeleitet werden soll benötigt die Datei vhost.conf die unter dem Domainordner "conf" mit folgendem Inhalt eingerichtet werden muß:

DocumentRoot /srv/www/vhosts/zieldomäne/httpdocs
<Directory "/srv/www/vhosts/zieldomäne/httpdocs">
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/srv/www/vhosts/zieldomäne/httpdocs:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/srv/www/vhosts/zieldomäne/httpdocs:/tmp"
</IfModule>
<IfModule sapi_apache2.c>
php_admin_flag engine on
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
</IfModule>



</Directory>

Außerdem in die Datei vhost.conf in der Zieldomäne die umgeleitete Domäne als alias eintragen. Das wars.

Gruß Christian
Mit Zitat antworten