Forum Moderators: phranque
I'm running Linux/Apache with CPanel/WHM.
How can I do this? I have root access and it's not a shared environment but I can't seem to get out of the home/username/public_html directory. Any help is appreciated.
Fribs
I have a public_html directory, under which I have the DOCUMENT_ROOT for each web site, plus a directory to hold my include files:
.../public_html/includes
.../public_html/site1 (www.example1.com maps to this)
.../public_html/site2 (www.example2.com maps to this)
.../public_html/site3 (www.example3.com maps to this)
cd public_html/site1
ln -s ../includes .
cd public_html/site2
ln -s ../includes .
cd public_html/site3
ln -s ../includes .
include('./include/copyright.html');