Ok,
httpd-vhosts.conf:
Code:
#<Directory "C:\Documents and Settings\Geir\My Documents\Web-design">
#Options Indexes FollowSymLinks MultiViews
#AllowOverride None
#Order allow,deny
#allow from all</Directory>
<VirtualHost *:80>
ServerName localhost
ServerAdmin youremail@domain
DocumentRoot "C:/Webserver/"
ServerPath /
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory C:/Webserver/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin youremail@domain
DocumentRoot "C:/Documents and Settings/Geir/My Documents/Web-design/G-Sun 2009/"
ServerName G-Sun2009
ServerPath "/G-Sun 2009"
<Directory "C:/Documents and Settings/Geir/My Documents/Web-design/G-Sun 2009/">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin youremail@domain
DocumentRoot "C:/Documents and Settings/Geir/My Documents/Web-design/Flyt/"
ServerName flyt
ServerPath /Flyt
<Directory "C:/Documents and Settings/Geir/My Documents/Web-design/Flyt/">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
No change..
The localhost section looks a little messy to me. Is the double directory-section right?
Thanks!
Bookmarks