一个菜问题,关于链接的问题!
Posted on 八月 16rd, 2007 由 admin
留言本中jsp页面要连接到html页面中有一句这样的代码
<p align="center"><a href="../index.html">我要留言</a></p>
index.html和本jsp页面都在目录liuyan下,但jsp中的连接无效
在ie地址中本应该出现http://localhost:8080/liuyan/index.html
却出现了http://localhost:8080/index.html
我把连接代码改为
<p align="center"><a href="../liuyan/index.html">我要留言</a></p>
问题依然存在,比较迷惑,请高手指点!谢谢!
推荐阅读
网友:hq1305018
改为:<a href="index.html">
网友:sasa_sasa
你的路径设置有问题// 如果你的jsp程序放在默认路径下,只要这样写就ok了:
<a href="index.html">。
而程序:"><a href="../index.html">我要留言</a>是指index.html在当前程序文件的上两层目录。


讨论区