如果我的目录设置如下:
projectfolder/
wsgi/
openshift/
templates/
home/
simple-sidebar.html
static/
css/
bootstrap.css
fonts/
js/
为什么我的simple-sidebar.html参考链接不起作用?:
<link href= "../../../static/css/bootstrap.css" rel="stylesheet">
我做错了什么?有更好的方法吗?
答案 0 :(得分:1)
这样做:
<link href= "/wsig/static/css/bootstrap.css" rel="stylesheet">
这是绝对的网址。
如果你想按自己的方式行事,你必须这样做:
<link href= "../../../../static/css/bootstrap.css" rel="stylesheet">
答案 1 :(得分:0)
如果您在home
文件夹中,
这应该有用,
<link href= "/wsig/static/css/bootstrap.css" rel="stylesheet">
记住,
/ - denotes the current directory you are in
./ - one step outside the current directory
../ - two steps outside the directory
希望这会有所帮助!!
答案 2 :(得分:0)
这可能对你有帮助。
<link href= "../static/css/bootstrap.css" rel="stylesheet">