http://www.ozsunny.com/news/australia/
上面的不行
http://www.ozsunny.com/news/australia/index.shtml
加了index.shtml就行
使用的是wdcp论坛的方法如下
http://www.wdlinux.cn/bbs/viewthread.php?tid=4268
在/usr/local/nginx/conf/nginx.conf中加了ssi
######################## default ############################
server {
listen 80;
server_name _;
access_log /www/wwwlogs/access_nginx.log combined;
root /www/wwwroot/default;
index index.shtml index.html index.htm index.php;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
location / {
ssi on;
ssi_silent_errors on;
ssi_types text/shtml;
try_files $uri @apache;
}