有人能解释为什么我得到以下错误?
从下面的目录,我运行"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"one_answers"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>
我认为你的问题可能与你在HTML中使用的花引号(智能引号)有关。相反,请使用常规引号:
regular: "
curly (smart): ”
我发现我得到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>
之后,我可以在这个端口上运行一个新进程。