找不到SimpleHTTPServer 404消息文件(尝试加载bootstrap.js)

时间:2014-05-16 17:23:52

标签: python twitter-bootstrap simplehttpserver

有人可以解释我收到以下错误的原因吗?

从以下目录中,我正在运行“python -m SimpleHTTPServer”

[blah@blah:~/Dropbox/bootstrap]: ls
css     img     index.html  js

当我在浏览器中访问localhost:8000 /时,出现以下错误:

127.0.0.1 - - [16/May/2014 10:22:37] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [16/May/2014 10:22:37] code 404, message File not found
127.0.0.1 - - [16/May/2014 10:22:37] "GET /%E2%80%9Djs/bootstrap.js%E2%80%9D HTTP/1.1" 404 -

是的,在js目录中,我有两个文件“bootstrap.js”和“bootstrap.min.js”

我的index.html文件如下所示:

<!DOCTYPE html>

<html>

    <head>
        <meta charset="utf-8">
        <title>My First Bootstrap Project</title>


    </head>

    <body>
        <div class="container">

            <h1><a href="#">Bootstrap Site</a></h1>
        </div>


        <link rel=”stylesheet” href=”css/bootstrap.css”  type=”text/css”/>
        <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
        <script src=”js/bootstrap.js”></script>
    </body>

</html>

2 个答案:

答案 0 :(得分:1)

我认为您的问题可能与您在HTML中使用的卷曲引语(智能引号)有关。相反,请使用常规报价:

regular: "
curly (smart): ”

答案 1 :(得分:0)

我发现出现404错误的原因是因为我已经有一个在8000端口上运行的进程。解决方案是先释放端口。

在Mac(Linux)上:

# If something is running on port 8000, this command will return
# the process with the process ID (PID) as the 2nd item
lsof -n -i :8000 | grep LISTEN

# Replace <PID> with whatever PID was returned above
kill -9 <PID>

之后,我可以在此端口上运行新进程。