构建 html 个链接
Structuring html links
我正在本地主机上处理我的网站。我的目录如下:
我的 索引页 直接位于站点文件夹中,如下所示:
../htdocs > mysite > index.php
我的我们的个人资料页面 位于名为 about us 的子文件夹中:
../htdocs > mysite > about-us > our-profile.php
我在 our-profile.php 页面上有一个 link 应该 link 像这样返回主页:
<a href=..\index.php>Home</a>
.
但我不断收到 404 - Not Found 错误。它使用 about-us 目录作为根目录。所以上面的 link 试图搜索 :
http://localhost:8888//mysite/about-us/mysite/index.php
而不是
http://localhost:8888//mysite/index.php
我如何重新构造 links?
编辑:
我正在使用 Dreamweaver。会不会是 Dreamweaver 的问题?
您正在使用反斜杠,请使用正斜杠
<a href=../index.php>Home</a>.
我正在本地主机上处理我的网站。我的目录如下:
我的 索引页 直接位于站点文件夹中,如下所示:
../htdocs > mysite > index.php
我的我们的个人资料页面 位于名为 about us 的子文件夹中:
../htdocs > mysite > about-us > our-profile.php
我在 our-profile.php 页面上有一个 link 应该 link 像这样返回主页:
<a href=..\index.php>Home</a>
.
但我不断收到 404 - Not Found 错误。它使用 about-us 目录作为根目录。所以上面的 link 试图搜索 :
http://localhost:8888//mysite/about-us/mysite/index.php
而不是
http://localhost:8888//mysite/index.php
我如何重新构造 links?
编辑: 我正在使用 Dreamweaver。会不会是 Dreamweaver 的问题?
您正在使用反斜杠,请使用正斜杠
<a href=../index.php>Home</a>.