I am running xampp as an intranet server using 'virtualhost' for 15 'sites' inside our network and things are working fine with 3 exceptions. First problem is my biggest-my 1TB drive is full and I need to add another drive to the server to call up data - how can I do this?
Here are 2 virtual domains from the vhosts file - the 3rd example is what i need to accomplish.
<VirtualHost *:80>
ServerName clubcal.iserver
ServerAlias upload.cytechph.com
DocumentRoot "F:/xampp/htdocs/clubcal"
</VirtualHost>
<VirtualHost *:80>
ServerName digiport.iserver
ServerAlias upload.cytechph.com/
DocumentRoot "F:/xampp/htdocs/digiport"
</VirtualHost>
This is an example of what I need to do:
<VirtualHost *:80>
ServerName tzone.iserver
ServerAlias upload.cytechph.com
DocumentRoot "G:/public_html/tzone"
</VirtualHost>
Here are 2 virtual domains from the vhosts file - the 3rd example is what i need to accomplish.
<VirtualHost *:80>
ServerName clubcal.iserver
ServerAlias upload.cytechph.com
DocumentRoot "F:/xampp/htdocs/clubcal"
</VirtualHost>
<VirtualHost *:80>
ServerName digiport.iserver
ServerAlias upload.cytechph.com/
DocumentRoot "F:/xampp/htdocs/digiport"
</VirtualHost>
This is an example of what I need to do:
<VirtualHost *:80>
ServerName tzone.iserver
ServerAlias upload.cytechph.com
DocumentRoot "G:/public_html/tzone"
</VirtualHost>