本帖最后由 杨进 于 2012-9-26 23:57 编辑
举个例子,比如我们在vs2010下建一个css.htm页面
vs中所在项目右键->在windows资源管理器中打开该文件夹:C:\Documents and Settings\Administrator\My Documents\Visual Studio 2010\Projects\html\html练习1\下能找到我们的css.htm文件,那么C:\Documents and Settings\Administrator\My Documents\Visual Studio 2010\Projects\html\html练习1\css.htm这就是这个文件的真实路径,也就是通常说的物理路径
而vs中css.htm页面里面右键->在浏览器中查看:会在浏览器中弹出页面http://localhost:5589/css.htm,这就是虚拟路径。虚拟路径一般带有ip地址或者域名,这里localhost就是本机的域名,带ip的例如:http://192.168.205.100:8080/css.htm
浏览器中输入C:\Documents and Settings\Administrator\My Documents\Visual Studio 2010\Projects\html\html练习1\css.htm也能和http://localhost:5589/css.htm一样访问这样页面。
至于说什么时候使用这个我倒说不清楚 |