I have set up an alias in httpd.conf to files outside the document root. It works on the public website, which is Linux, but I can't get a similar alias to work on my local system (Win7). This is what I have tried:
Alias /css_shared "D:/Apache2/htdocs/site/css"
</IfModule>
<Directory "D:/Apache2/htdocs/site/css">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Can anyone see a problem or suggest a possible solution? I've been going nuts with this.