How do I link back out of a folder using the a-href tag




You can move up a directory by using ../ before your html document. So if home.html is up one directory, you could do:
<a href="../home.html">bla</a>


Try setting your link to be your site root as so; note the / in front of home.html:
<a href="/home.html">bla</a>
 
Or if you know the path is definitely one directory down then just explicitly tell it to go down 1 directory; note the ../ in front of the home.html.
<a href="../home.html">bla</a>

Comments

Popular posts from this blog

Script For Login, Logout and View Using PHP, MySQL and Bootstrap

PHP Ajax Login Validation Tutorial

Insert CheckBox and Radio button Data in MySQL Database Using PHP