R rldev Verified User Joined May 26, 2004 Messages 1,003 Sep 20, 2006 #1 I am trying to create a "www" symlink. I tried # Add www symlink to web directory ln -s /home/${username}/domains/${domain}/public_html www However this is not working. Anyone have any ideas?
I am trying to create a "www" symlink. I tried # Add www symlink to web directory ln -s /home/${username}/domains/${domain}/public_html www However this is not working. Anyone have any ideas?
hehachris Verified User Joined Nov 24, 2004 Messages 533 Location Hong Kong Sep 21, 2006 #2 you should state an absolute path for the link name unless you've cd into the folder eg ln -s /home/${username}/domains/${domain}/public_html /home/${username}/domains/${domain}/public_html/www rldev said: I am trying to create a "www" symlink. I tried # Add www symlink to web directory ln -s /home/${username}/domains/${domain}/public_html www However this is not working. Anyone have any ideas? Click to expand...
you should state an absolute path for the link name unless you've cd into the folder eg ln -s /home/${username}/domains/${domain}/public_html /home/${username}/domains/${domain}/public_html/www rldev said: I am trying to create a "www" symlink. I tried # Add www symlink to web directory ln -s /home/${username}/domains/${domain}/public_html www However this is not working. Anyone have any ideas? Click to expand...
R rldev Verified User Joined May 26, 2004 Messages 1,003 Sep 21, 2006 #3 How can I havean absolute path? This is when a domain is created. Da creates their symlink so their must be a simple way.
How can I havean absolute path? This is when a domain is created. Da creates their symlink so their must be a simple way.