I want to add a symbolic link to another folder
I want to say ln -sf / var / www / html to
/home / var / exemple / public
This is good.
/ home / var / example / public belongs to a user who creates.
in any case this is fine to do in production
Asked
Active
Viewed 118 times
1 Answers
1
To create a symbolic link of /var/www/html in /home/var/example/public, you can
ln -s /var/www/html /home/var/example/public
maybe you meant the destination folder as ~/public which will be in the same user.
Habeel Mazhar
- 198