<!--#include virtual="/navigation/head_01.inc"-->
Das root-Verzeichnis wird in der httpd festgelegt,
Für einen VirtualHost ist das Rootverzeichnis jenes, welches als DocumentRoot angegeben ist.
Gehen wir mal von obigen und folgendem Beispiel aus:
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /www/docs/dummy-host.example.com
ServerName dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
dann wäre im Netz Deine einzubindende Datei unter:
http://dummy-host.example.com/navigation/head_01.inc
zu finden.
Gruß
Avalon