As I build many virtual webs on localhost and the data of htdocs folder is increasing everyday.
I want to move the htdocs folder to external hard disk, is it possible to do that?
I try editing httpd.conf file. But when I open localhost, it shows "Access forbidden!" "403 error".
Alias /bitnami/ "my-hardisk:/htdocs"
Alias /bitnami "my-hardisk:/htdocs"
<Directory "my-hardisk:/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
I am using xampp on OSX.