Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create a symbolic link mysite.com to point to a directory /home/drupal/sites/mysite Where do I cd into to create this? Do I need to run this command in /home/drupal/sites/mysite or can I be anywhere on the server to do this? Can this be done in the vhosts file instead?

share|improve this question

1 Answer

up vote 0 down vote accepted

Try this in the directory where you want the link created:

ln -s /home/drupal/sites/mysite mysite.com

See: http://frankmash.blogspot.com/2007/11/ln-s-examples.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.