1
2
3
4
5
6
7
Alias /abc/ "C:/test/abc"
<Directory "C:/test/abc">
Options FollowSymLinks +Includes
AllowOverride None
Allow from all
</Directory>
QuoteNot Found
The requested URL /abc was not found on this server.
QuoteForbidden
You don't have permission to access /abc/index.html on this server.
1
2
3
4
5
6
7
Alias /abc/ "C:/test/abc/"
<Directory "C:/test/abc/">
Options +FollowSymLinks +Includes
AllowOverride None
Allow from all
</Directory>
1
2
3
4
5
6
7
Alias /munin/ "/var/cache/munin/www/"
<Directory "/var/cache/munin/www/">
Options FollowSymLinks
AllowOverride None
Order deny,allow
...
</Directory>