您好我是新來使用python與網絡程序,我試圖讓一個使用CSS樣式表一個基本的網站。我有三個文件:app.py,index.html和style.css。他們都在同一個目錄中。當我運行app.py並轉到localhost:8080時,它顯示「Hello World!」,但它沒有來自style.css文件的樣式,並且我的終端顯示「HTTP/1.1 GET /style.css」 - 404 Not Found 。但是,當我在不使用app.py文件的情況下以chrome打開我的index.html文件時,它確實具有樣式格式。任何幫助?提前致謝。我的代碼如下:Python中沒有找到CSS文件
app.py:
import web
urls = (
'/', 'Index'
)
app = web.application(urls, globals())
web.config.debug = True
class Index(object):
def __init__(self):
self.render = web.template.render('.')
def GET(self):
return self.render.index()
if __name__ == '__main__':
app.run()
的index.html:
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css" />
<title>Basic Web Project</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>
的style.css:
p {
color: green;
font-size: 22px;
}
工作正常!謝謝! – jkesh 2015-02-06 18:14:36