I need help with the <a href="" > code. I've redirected it to my forums on my website. But when I click "Homepage" on the link there, which was origionally directed to < a href="./index.php" >, it now takes me to the forum index. How do I make it so that it directs back to the origionall index.php?
If you need me to reword it, just ask.
[HELP] <a href="" > help.
Moderator: General Moderators
Re: [HELP] <a href="" > help.
Well, I can only assume that the "index" file is in two different directories... So You'll have to add the name of the directory like this <a href="URL/DIRECTORY/index.php"/>
Re: [HELP] <a href="" > help.
I know this, but the first dictionary is just in htdocs on local host.Thizzle wrote:Well, I can only assume that the "index" file is in two different directories... So You'll have to add the name of the directory like this <a href="URL/DIRECTORY/index.php"/>
- Grizzzzzzzzzz
- Forum Contributor
- Posts: 125
- Joined: Wed Sep 02, 2009 8:51 am
Re: [HELP] <a href="" > help.
you'll have to do something like
with additional ../ per parent directory
if i'm still not hitting the nail on the head then post your folder/file layout of the specific files
Code: Select all
<a href="../../index.php"/>if i'm still not hitting the nail on the head then post your folder/file layout of the specific files
Re: [HELP] <a href="" > help.
Grizzzzzzzzzz wrote:you'll have to do something like
with additional ../ per parent directoryCode: Select all
<a href="../../index.php"/>
if i'm still not hitting the nail on the head then post your folder/file layout of the specific files
Thanks dude, it works. Cheers for the Help