I am working to implement something called ProcessMaker.
It wants to have its files reside in /opt/processmaker/workflow/public_html.
However my main site has its files in VirtualServer under /home/username/public_html/
How do I go about linking mainsite.com/processflow with the mainsite.com being under /home/username/public_html, and the /processflow actually residing in /opt/processmaker/workflow/public_html.
I hope that makes sense.
Something like this ?
Add an alias to your VirtualHost as Dave says, but don't forget to also add a new directory directive to be able to access the file.
I think you are asking about virtual sites?
I know you can edit the apache2.conf or httpd.conf depending on your install and then see how the server handles hosts
here is an example
on this the DNS server routes traffic to any address with .intranet on port 80 to a server then the apache host file take the request to the right folder, note the part DocumentRoot
I think the newer apache has a file just for hosts and it is called by the main conf file
hope that helps