ghdhair100
Cały czas gada!
Dołączył: 15 Gru 2010
Posty: 1953
Przeczytał: 0 tematów
Ostrzeżeń: 0/5 Skąd: England
|
Wysłany: Śro 4:12, 09 Mar 2011 Temat postu: nginx 的 wordpress rewrite 规则 |
|
|
if (-f $request_filename) {,[link widoczny dla zalogowanych]
break;
}
set $supercache_file '';
set $supercache_uri $request_uri;
if ($request_method = POST) {
set $supercache_uri '';
}
if ($query_string) {
set $supercache_uri '';
}
if ($http_cookie ~* "comment_author_|wordpress|wp-postpass_" ) {
set $supercache_uri '';
}
if ($supercache_uri ~ ^(.+)$) {
set $supercache_file
/wp-content/cache/supercache/$http_host/$1index.html;
}
if (-f $document_root$supercache_file) {
rewrite ^(.*)$ $supercache_file break;
}
if (,[link widoczny dla zalogowanych]!-e $request_filename) {
rewrite . /index.php last;
}
原贴出处:[link widoczny dla zalogowanych]
Post został pochwalony 0 razy
|
|