为什么服务器找不到我的css文件?

时间:2015-03-14 02:26:59

标签: php css twig

当我在localhost:8000的网络浏览器中访问我的服务器时出现此错误:[404]:/ css /styles.css - 没有这样的文件或目录

<html>
<head>
   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
   <link href="css/styles.css" rel="stylesheet" type="text/css">
  <title>Repeat Counter!</title>
</head>
<body>
<div class="container">
  <h1>Repeat Counter</h1>
  <form action="/results">
    <div class="form-group">
      <label for="keyword">Enter your keyword:</label>
      <input id="keyword" name="keyword" class="form-control" type="text">
    </div>
    <div class="form-group">
      <label for="bank">Enter your bank of words to check:</label>
      <input id="bank" name="bank" class="form-control" type="text">
    </div>

    <button type="submit" class="btn-success">Count</button>
  </form>
</div>
</body>
</html>

这是我的styles.css文件:

 .container {
         max-width: 600px;
         margin: auto;
     }

我的styles.css文件位于我的css文件夹中,该文件夹位于我的项目根文件夹中。文件路径:evanbutler / repeatcounter / css / styles.css

如果你想查看所有文件,这里有一个指向git存储库的链接: https://github.com/evanb2/Assessment2.git

我觉得我犯了一个非常简单/明显的错误,但我无法看到它。谢谢!

1 个答案:

答案 0 :(得分:0)

好的,我是个白痴。只需将我的css文件夹从根文件夹移动到我的index.php文件的web文件夹中,这是有道理的,因为这是终端运行我的服务器的地方。