我在连接样式表,图像,数据库连接文件(db.php),脚本文件等文件时遇到问题。因为它们位于包含/链接的文件之外。
例如,假设这是主文件的位置,其中将调用所有内容:
my website directory/admin/thefilewhereeverythingwillbecalled.php
在thefilewhereeverythingwillbecalled.php
中的,我必须调用位于包含thefilewhereeverythingwillbecalled.php
的文件夹之外的db.php
e.g。 my website directory/-this is the directory where the db.php is located-/thefilewhereeverythingwillbecalled.php
- 同样使用样式表和脚本。
但是样式表和脚本位于文件夹cssandjs(包含所有样式表和脚本文件)中,该文件夹位于thefilewhereeverythingwillbecalled.php
e.g。 my website directory/-here is where the cssandjs folder is located-/thefilewhereeverythingwillbecalled.php
一般来说,我只是在链接文件之外的文件时遇到问题。有人可以告诉我如何链接它吗?
我试过了:
../cssandjs/style.css
和./cssandjs/jquery.js
但没有一个可以使用
答案 0 :(得分:0)
尝试包含文件的完整路径。
答案 1 :(得分:0)
尝试引用包含目录和文件的文件 $ _SERVER [ 'DOCUMENT_ROOT'] “/目录名/ file.ext”;
或使用相对路径“../ dirnName / file.ext”;
首选方法
答案 2 :(得分:0)
如果我是对的,那就是2个目录了。试试这个:
../../cssandjs/style.css
如果/ cssandjs /位于您的网站目录中,这将有效。 你应该对你的目录名更具体一些,而不是它所在的位置 -
似乎无法弄清楚哪个属于同一个文件夹。