Right click this page to view the code tags in this example below:
This is some example code!
this blog is a collection of answers to the types of questions we all ask that typical start off with the words "how do I...."
This is some example code!
<Directory c:\myweb>
Order allow,deny
Allow from all
</Directory>
<Directory c:\mysite>
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
ServerName myweb
DocumentRoot C:\myweb
<Directory C:\myweb>
IndexOptions +FancyIndexing NameWidth=*
Options Includes FollowSymLinks Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName mysite
DocumentRoot C:\mysite
<Directory C:\mysite>
IndexOptions +FancyIndexing NameWidth=*
Options Includes FollowSymLinks Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>