前几天写的那个博客有个bug,导致后台无法进入,发现是302问题。
http://ningyuqiao.blog.51cto.com/5581274/1615552
比如:网站为http://ningyuqiao.51cto.com/blog
1
2
3
4
5
6
7
8
9
10
11
|
location
/blog/
{
if
(-f $request_filename
/index
.html){
rewrite (.*) $1
/index
.html
break
;
}
if
(-f $request_filename
/index
.php){
rewrite (.*) $1
/index
.php;
}
if
(!-f $request_filename){
rewrite (.*)
/blog/index
.php;
}
}
|
本文转自ning1022 51CTO博客,原文链接:http://blog.51cto.com/ning1022/1616023
,如需转载请自行联系原作者