- 积分
- 12
- 威望
-
- 金钱
-
- 注册时间
- 2014-12-25
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
在路径正常的情况下,可以访问js,css文件,但是doc,xls类型的文件就访问不了 例如:访问 XXX.com/resource/file/example_question.xlsx
nginx log:114.221.79.228 - - [12/Nov/2015:10:19:35 +0800] "GET /resource/file/example_question.xlsx HTTP/1.1" 404 583 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.125 Safari/537.36" -
但文件确实存在:
nginx 配置:
server {
listen 80; server_name xxx.net;
index index.php;
root /home/wwwroot/default;
location ~ [^/]\.php(/|$) {
# comment try_files $uri =404; to enable pathinfo try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; #proxy_ignore_client_abort on; //让代理客户端不断开 #include pathinfo.conf; }
location /{ rewrite ^.*$ /index.php last; }
location ~* \.php$ { fastcgi_pass 127.0.0.1:9000; }
location ~* \.(ico|css|js|gif|jpe?g|png}xlsx)(\?[0-9]+)?$ {
expires max;
log_not_found off; }
access_log /home/wwwlogs/cpu.m370.net.log access;} |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?注册
x
|