0

我在链接样式表、图像、数据库连接文件(db.php)、脚本文件等文件时遇到问题。因为它们位于包含/链接它们的文件之外。

例如,假设这是将调用所有内容的主文件的位置:

my website directory/admin/thefilewhereeverythingwillbecalled.php

在中thefilewhereeverythingwillbecalled.php,我必须调用位于包含的文件夹之外的 db.phpthefilewhereeverythingwillbecalled.php

例如my website directory/-this is the directory where the db.php is located-/thefilewhereeverythingwillbecalled.php- 同上样式表和脚本。

但是,样式表和脚本位于文件夹 cssandjs(包含所有样式表和脚本文件)中,该文件夹位于thefilewhereeverythingwillbecalled.php

例如my website directory/-here is where the cssandjs folder is located-/thefilewhereeverythingwillbecalled.php

通常,我只是在链接文件时遇到问题,该文件位于调用这些文件的文件之外。有人可以给我一个想法如何链接它吗?

我试过这个:

../cssandjs/style.css./cssandjs/jquery.js它们都不起作用

4

3 回答 3

0

尝试使用 $_SERVER['DOCUMENT_ROOT']."/dirName/file.ext"; 引用文件,例如包含目录和文件。

或使用相对路径“../dirnName/file.ext”;

首选第一种方法

于 2012-05-14T11:09:46.063 回答
0

如果我是正确的,它是 2 个目录。尝试这个 :

../../cssandjs/style.css

如果 /cssandjs/ 在您的网站目录中,这将起作用。您应该更具体地使用您的目录名称,而不是-这里是它所在的位置-

似乎无法弄清楚哪些在同一个文件夹中。

于 2012-05-14T11:57:23.463 回答
0

尝试包含文件的完整路径。

于 2012-05-14T11:01:07.173 回答