Home
> Uncategorized > Creating a virtual directory on Apache for Windows
Creating a virtual directory on Apache for Windows
I wanted to allow database downloads from my D: drive, but I got this 403 error, this is how I solved it in my Httpd.conf
Alias /db "D:sqldatabackups"
<Directory "D:sqldatabackups">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from localhost
Allow from all
</Directory>
Hope this helps
Categories: Uncategorized
Comments (0)
Trackbacks (0)
Leave a comment
Trackback