情況是這樣的,
我的wordpress並不是放在網站的根目錄的,而是放在/blog目錄下的,然後在wordpress中設定固定連結的時候,每次都出錯,用了網上幾個方法都不行,後來在http://codex.wordpress.org/Nginx 找到一個解決辦法。
我正好安裝了wp super cache的外掛,那麼在nginx.conf中新增如下:
程式碼如下:
set $cache_uri $request_uri;
location /blog {
try_files /blog/wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /blog/index.php?$args ;
}