Web文件夹结构

时间:2011-07-22 10:26:19

标签: html structure directory

我正在编写一个代码,其中所有图像都使用前面的“/”

引用

例如:

<img alt="" class="repositioned" src="/images/top-b-strip.jpg" />

我有一个wamp服务器,在那里我运行代码并发现图像不正确,直到我在图像之前删除了“/”。

 <img alt="" class="repositioned" src="images/top-b-strip.jpg" />

有人可以解释我在这里缺少的任何东西吗?

2 个答案:

答案 0 :(得分:2)

在路径的开头加上“/”表示它绝对位于服务器的根目录下。例如,http://www.example.com/images/top-b-strip.jpg,您实际上可以将它们作为http://www.example.com/somesubaccount/images/top-b-strip.jpg

您可以阅读有关绝对路径与相对路径的更多信息,例如http://www.communitymx.com/content/article.cfm?cid=230ad

答案 1 :(得分:0)

/images/top-b-strip.jpg 绝对 路径,您需要使用 相对 路径(没有第一个/).

这意味着图像实际上是html文件所在目录的子目录,而如果使用绝对路径,则images文件夹应该是文件系统根目录的子文件夹。