通过以下与CSS / JS的链接,我能够成功选择除Glyphicons之外的所有CSS。

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="../bootstrap-3.3.5-dist/css/bootstrap.min.css">

<!-- Optional theme -->
<link rel="stylesheet" href="../bootstrap-3.3.5-dist/css/bootstrap-theme.min.css">

<!-- Latest compiled and minified JavaScript -->
<script src="../bootstrap-3.3.5-dist/bootstrap.min.js"></script>


项目文件夹结构:

-- bootstrap-3.3.5-dist
-- myProjectFolder -- index.html
                   -- aboutUs.html
                   -- ...html
                   -- ...html


What I want >>>

html - 除非所有文件都在根目录中,否则引导引导字形将不会显示-LMLPHP

我得到的是:

html - 除非所有文件都在根目录中,否则引导引导字形将不会显示-LMLPHP



但是,将HTML文件移至根目录后,一切都可以正常运行,因此我在项目根目录上具有HTML和引导程序。链接更改为:

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="bootstrap-3.3.5-dist/css/bootstrap.min.css">

<!-- Optional theme -->
<link rel="stylesheet" href=".bootstrap-3.3.5-dist/css/bootstrap-theme.min.css">

<!-- Latest compiled and minified JavaScript -->
<script src="bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>


项目文件夹结构现在更改为:

-- bootstrap-3.3.5-dist
-- index.html
-- aboutUs.html
-- ...html
-- ...html


为什么会这样,并且有一种方法可以在不将HTML文件移至根目录的情况下使其全部正常工作?

最佳答案

root path是您网站的顶部路径。它没有父文件夹。您可以转到//index.hmtl,但是/../foo

document root将网站的根路径映射到文件系统的目录。在您的文件系统上,文档根目录可能不是文件系统根目录,并且具有父目录。

但是,就网站而言,根源之上没有任何东西。因此,不在文档根目录下的目录完全不在网站范围内。

关于html - 除非所有文件都在根目录中,否则引导引导字形将不会显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33699869/

10-10 08:34