<a href="http://www.mysite.com/index.php"> links from the positions all over my site <a>
I have these hot links all over the site. I cannot use the relative ../../ urls here because, I don't know if the page is in a folder, a sub-folder or a sub-sub-folder. No matter where the page is, I want this link to point to the index page.
So I have to use the absolute urls such as http://www.mysite.com/index.php.
But I also want my site will work with out the specific http://www.mysite.com.
How can I handle this? I think using php finding the current location and then use relative url is a choice. Any codes?
Or it is just a simple HTML solution I happend to miss?
Thanks!