1
honk OP 试了 在server {} 里加 :
index index.html 无效 |
2
honk OP 通过rewrite 解决了 !
在location / {} 里加: set $index index.html; rewrite ^.*\/$ $fastcgi_script_name$index last; |
3
lenmore 2011-12-31 10:50:17 +08:00
我是这样做的:
location = / { index index.html; } location / { ... } |