在输入URL之前,我曾经看到过这种情况http://test.com/test/
,而不是给我一个html页面,它为我提供了一个类似于“文件浏览器”的界面,可以浏览给定位置中的所有文件。
我认为这可能是可以在位置上下文中启用的Nginx模块。
该nginx.conf
文件中:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name 122.97.248.252;
location /test {
root /home/yozloy/html/;
autoindex on;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
更新 error.log
2012/05/19 20:48:33 [错误] 20357#0:* 72 open()“ / home / yozloy / html / test”失败(2:无此类文件或目录),客户端:125.43.236.33,服务器:122.97.248.252,请求:“ GET / test HTTP / 1.1”,主机:“ unicom2.markson.hk
我必须误会位置信息的/test
意思,我以为意思是当我输入http://example.com/test时,它会访问根字典,即/home/yozloy/html/