在thinkphp 中用html标签加载css,img,script,路径中不能用"../"表示上一级,而是用正斜杠"/"表示项目根目录
如目录结构为,
examples
rbac
lib
action
tpl
default
Index
index.html
public
css
common.css
js
images
如果要在tpl下的index.html中用html标签加载public文件夹中css中的文件应该如下
<link href="/examples/public/css/common.css" rel="stylesheet" type="text/css">
而不是
<link href="../../../../public/css/common.css" rel="stylesheet" type="text/css">
图片和js原理一样