Ciao,
è possibile con apache gestire 3 siti differenti che però sono tutti all'interno della cartella Htdocs che usano link relativi.
Mi capita che il principale funziona correttamente e gli altri o non si vedono oppure i link relativi non funzionano e mi risponde che non esiste la pagina.
o li ho impostati così ma non funziona molto correttamente
<Directory "c:/htdocs/">
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler server-parsed .html
Order allow,deny
Allow from all
LanguagePriority it en es de fr
ForceLanguagePriority Prefer Fallback
</Directory>
<Directory "c:/htdocs/a">
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler server-parsed .html
Order allow,deny
Allow from all
LanguagePriority it en es de fr
ForceLanguagePriority Prefer Fallback
</Directory>
<Directory "c:/htdocs/b">
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler server-parsed .html
Order allow,deny
Allow from all
LanguagePriority it en es de fr
ForceLanguagePriority Prefer Fallback
</Directory>
<Directory "c:/htdocs/c">
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler server-parsed .html
Order allow,deny
Allow from all
LanguagePriority it en es de fr
ForceLanguagePriority Prefer Fallback
</Directory>
Ho provato anche:
<Directory c:/htdocs/a/">
<Directory c:/htdocs/b/"
<Directory c:/htdocs/c/">
ma non funziona
La struttura delle pagine che utilizzo è html con inseriti degli include che contengono il codice html.
Grazie