WordpressのNginxのRewrite Confの書き方について

NginxのWebサーバーは少ないリソースで、高速Webサーバーを構築できるため、WebサーバーをApacheからNginxに切り替えたいと考えております。
NginxのWebサーバーの場合、WordpressのNginx Confの書き方はなんでしょうか。
教えて頂けると助かります。

ご回答を御待ちしております。
2014-04-21 16:09 コメント
已邀请:

ベストアンサー

2

iQi - 面白いアプリを開発中

{ 賛成 }: Lubo lujian

NginxのWebサーバーを利用する場合、WordpressのNginx Confの書き方は下記となります。

server
    {
            listen       80;
            server_name blog.jp.ai;
            index index.html index.htm index.php;
            root  /home/blog;

            location / {
                    if (!-f $request_filename){
                            rewrite (.*) /index.php;
                    }
            }

            location ~ .*\.(php|php5)?$
                    {
                            fastcgi_pass  unix:/tmp/php-cgi.sock;
                            fastcgi_index index.php;
                            include fcgi.conf;
                    }

            location /status {
                    stub_status on;
                    access_log   off;
            }

            location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                    {
                            expires      30d;
                    }

            location ~ .*\.(js|css)?$
                    {
                            expires      12h;
                    }

    }


ポイントとして、下記のコード内容を追加することです。

location / {
                    if (!-f $request_filename){
                            rewrite (.*) /index.php;
                    }
            }


また、質問があれば遠慮なく教えてください。
2014-04-21 16:11 1 コメント

ログインまたは登録してから回答してください

EXIT フルスクリーンモード 回答