I have 'docs' folder which is normal programming document.
When I try to create sym link for it, so I can access the page with ease,
with the following command.
Code:
ln -s /data1/docs/index.html /home/haxpor/Desktop/API_DOC
It looks fine. But when I acces that sym link file, the page doesn't load up.
In the URL of the browser, it shows
'file:///home/haxpor/documentation.html', which is absolutely wrong.
So I look in the 'index.html' file and see that it will load up 'document.html' first with the following href-tag.
Code:
<h1><a href="./documentation.html">Documentation</a></h1>
As you know I loged in as haxpor.
Is it right to link to my home folder?
How can I solve this problem so I can browse for all links in 'docs' folder without problem?
Thanks in advance.