使用Nginx已有一段时间了,早先用的是Apache~
现在把我从网上各处收集来的一些rewrite规则总结一下~
Wordpress:
location / {
index index.html index.php;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/i...
2-17 543
使用Nginx已有一段时间了,早先用的是Apache~
现在把我从网上各处收集来的一些rewrite规则总结一下~
Wordpress:
location / {
index index.html index.php;
...