I am trying to create a symbolic link on the server with the command ln -s
,
Option 1:
ln -s /home/thejobco/public_html/JCCore/ajax_search /home/thejobco/public_html/demo/typo3conf/ext/
result 1:
ajax_search -> /home/thejobco/public_html/JCCore/ajax_search
Option 2:
ln -s /home/thejobco/public_html/JCCore/ajax_search/ /home/thejobco/public_html/demo/typo3conf/ext/
result 2:
ajax_search -> /home/thejobco/public_html/JCCore/ajax_search/
Question:
I want to know if the above two options are the same, or there is different between them? Option 1 does not have /
, option 2 has /
, but both of them work well, so just wonder which is the standard way?