How can I create Linux symbolic link ?

If I understood you well, you want to be able to access any public_html/ file from https://secure.mydomain.com/.

It's just as simple as that:
Code:
cd ~/domains/mydomain.com/private_html
mv secure secure_bkp
ln -s ../public_html secure
 
Back
Top