i tried link page href home , login not working.
<div id="menu_wrapper"> <div id="container"> <ul class="menu" rel="sam1"> <li class="active"><a href="index.php">home</a></li> <li class="menu_login"><a href="./login.php">login</a></li> </ul> </div> </div>
here code: code
it wont show me page. type localhost/index.php in browser , when try click on login show sent me localhost/index.php#
you can set base tag in header:
<head> <base href="http://stackoverflow.com"> </head> <body> <a href="index.php">base</a> </body>
your link is:
http://stackoverflow.com/index.php
in folder , subfolder.
Comments
Post a Comment