CI框架的静态文件加载问题,LNMP环境,求帮忙写一个重写规则
文件目录结构:
在视图文件中引入js,css文件:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>welcome</title>
<script type="text/javascript" src="static/js/main.js"></script>
<link rel="stylesheet" type="text/css" href="static/css/main.css" />
</head>
<body>
<h1>hello</h1>
</body>
</html>
访问视图可以正常加载,css ,js没有效果,已经去掉index.php;
http://wb.vxndy.com/welcome/index
nginx配置文件:
server {
listen 80;
server_name www.ci.dev ci.dev;
root "D:/phpStudy/WWW/ci";
index index.html index.htm index.php;
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
#autoindex on;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}
求可以正确加载静态文件的nginx规则;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论