web-dev-qa-db-ja.com

Nginx-wordpressサブディレクトリ内、どのデータを渡す必要がありますか?

私はいろいろなことを試しました。私が今いるところのポイントはこれです:

location ^~ /wordpress {
    alias /var/www/example.com/wordpress;
    index index.php index.html index.htm;
    try_files $uri $uri/ /wordpress/index.php;

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_split_path_info ^(/wordpress)(/.*)$;
        fastcgi_param SCRIPT_FILENAME /var/www/example.com/wordpress/index.php;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }
}

現在、私が知る限り、すべてのリソース(画像など)は正しくロードされています。そしてhttp://www.example.com/wordpressはワードプレスをロードしますが、「ページが見つかりません」というページ。 (ただし、Wordpressが使用されています)。投稿のURLを試しても同じ結果が得られます。「ページが見つかりません」。だから私は問題を知っていますwordpressはパスまたは何かについてのデータを取得していません。別の潜在的な問題は、example.com/wp-admin.phpその後、引き続き実行されますindex.php

渡す必要のあるデータは何ですか?ここで何がうまくいかないのでしょうか?

33
Matthew

ロケーションエイリアスのエンドマッチなので、ルートのみを使用する必要があります。また、everythingではなく、wordpress afaik。 :

location @wp {
  rewrite ^/wordpress(.*) /wordpress/index.php?q=$1;
}

location ^~ /wordpress {
    root /var/www/example.com;
    index index.php index.html index.htm;
    try_files $uri $uri/ @wp;

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $request_filename;
        fastcgi_pass 127.0.0.1:9000;
    }
}

または本当にパス情報が必要な場合(URLは/wordpress/index.php/foo/barのようになります):

location ^~ /wordpress {
    root /var/www/example.com;
    index index.php index.html index.htm;
    try_files $uri $uri/ /wordpress/index.php;

    location ~ \.php {
        fastcgi_split_path_info ^(.*\.php)(.*)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
        fastcgi_pass 127.0.0.1:9000;
    }
}

編集:最初のサーバーを更新して{}最初の/ wordpressをuriから取り除き、残りをqパラメーターとして渡す

EDIT2:名前付きの場所はサーバーレベルでのみ有効です

50
kolbyjack

おい、これは、magentoルートフォルダーのサブディレクトリにあるwordpressブログで機能します。

server {
listen 80;
server_name my-site.co.uk;
rewrite / $scheme://www.$Host$request_uri permanent; ## Forcibly prepend a www
}

server {
listen 80 default;
client_max_body_size 8M;
## SSL directives might go here
server_name www.my-site.co.uk; ## Domain is here twice so server_name_in_redirect will favour the www
root /var/www/my-site/magento;

location / {
    index index.html index.php; ## Allow a static html file to be shown first
   try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler
   expires 30d; ## Assume all files are cachable
}

location  /wordpress {
          index index.php index.html index.htm;
         try_files $uri $uri/ /wordpress/index.php;
         }

## These locations would be hidden by .htaccess normally
location ^~ /app/                { deny all; }
location ^~ /includes/           { deny all; }
location ^~ /lib/                { deny all; }
location ^~ /media/downloadable/ { deny all; }
location ^~ /pkginfo/            { deny all; }
location ^~ /report/config.xml   { deny all; }
location ^~ /var/                { deny all; }

location /var/export/ { ## Allow admins only to view export folder
    auth_basic           "Restricted"; ## Message shown in login window
    auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword
    autoindex            on;
}

location  /. { ## Disable .htaccess and other hidden files
    return 404;
}


location @handler { ## Magento uses a common front handler
    rewrite / /index.php;
}

location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler
    rewrite ^(.*.php)/ $1 last;
}

location ~ .php$ { ## Execute PHP scripts
    if (!-e $request_filename) { rewrite / /index.php last; } ## Catch 404s that try_files miss

    expires        off; ## Do not cache dynamic content
    fastcgi_pass   unix:/var/run/php5-fpm.sock;
    fastcgi_param  HTTPS $fastcgi_https;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    fastcgi_param  MAGE_RUN_CODE default; ## Store code is defined in administration > Configuration > Manage Stores
    fastcgi_param  MAGE_RUN_TYPE store;
    include        fastcgi_params; ## See /etc/nginx/fastcgi_params
}

}

13
Antony Smith

私は同じ問題を抱えていましたが、これが私のためにそれを修正したものです:

  1. サイトのNGINX構成ファイルを開きます。サーバーブロックの内部で、ルートディレクトリへのパスを追加し、ファイルの優先順位を設定します。

    root /mnt/www/www.domainname.com;
    index  index.php index.html index.htm;
    
  2. 空のロケーションブロックを作成しますbefore他のすべてのロケーションブロック:

    location /latest {
    # Nothing in here; this is to avoid redirecting for this location
    }
    
  3. あなたの場所/ブロックのルートディレクトリを表に出して、次のようにリダイレクトを追加してください:

    location / {
    # root   /mnt/www/www.domainname.com;
    index  index.php index.html index.htm;
    rewrite ^/(.*)$ http://www.domainname.com/latest/$1 redirect;
    }
    
  4. 場所〜.php $ブロックがルートをポイントしていることを確認してください

    root /mnt/www/www.domainname.com;
    

これで解決しました。