我正在使用 webfaction 作为虚拟主机。我正在尝试为我的cherrypy 应用程序提供一个css 文件,但有些东西不起作用。我有我的python应用程序
home/webapps/spotipy
和我的css文件
home/webapps/spotipy/css
在我的 python 代码的顶部,我有
#!/usr/local/bin/python3.2
import cherrypy
class Root(object):
@cherrypy.expose
def index(self):
return '''<html>
<head>
<title>Spoti.py</title>
<link rel="stylesheet" href="css/my_css.css" type="text/css" />
</head>
<p> hi </p>
<body>
<p> hi joey </p>
%s
</body></html>''' %text
这在底部
cherrypy.quickstart(Root(),config={
'/css':
{ 'tools.staticdir.on':True,
'tools.staticdir.dir':"home/webapps/spotipy/css"
},
'/my_css.css':
{ 'tools.staticfile.on':True,
'tools.staticfile.filename':"home/webapps/spotipy/css/my_css.css"
}
})