hallo,
Wie kann man bei Apache das Root-Verzeichnis für den Webserver setzen?
Also von C:\Programme\xampp\htdocs auf ein beliebiges Verzeichnis auf meiner Festplatte.
Du brauchst zuerst einen Container für das gewünschte Verzeichnis, also beispielsweise
<Directory "D:">
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
AddOutputFilter Includes htm
Order allow,deny
Allow from all
AllowOverride None
</Directory>
Und dss gibst du dann als DocumentRoot an, also beispielsweise
DocumentRoot "D:/root"
Grüße aus Berlin
Christoph S.