簡體   English   中英

Nginx - wordpress 在一個子目錄下,應該傳遞什么數據?

[英]Nginx - wordpress in a subdirectory, what data should be passed?

我嘗試了很多不同的東西。 我現在的重點是:

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,但頁面顯示“找不到頁面”。 (不過,Wordpress 已用於此目的)。 如果我嘗試任何帖子網址,我會得到相同的結果,“找不到頁面”。 所以我知道問題是 wordpress 沒有獲取有關路徑或其他東西的數據。 另一個潛在的問題是,如果我運行example.com/wp-admin.php那么它仍然會運行index.php

需要傳遞哪些數據? 這里可能出了什么問題?

由於您的位置別名結束匹配,您應該只使用 root。 此外,並非所有內容都通過 wordpress afaik 上的 index.php 路由。 此外,除非您知道您需要路徑信息,否則您可能不需要。 我想你想要這樣的東西:

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;
    }
}

或者如果您確實需要路徑信息(網址看起來像 /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;
    }
}

編輯:更新第一台服務器{}以從 uri 中去除初始 /wordpress 並將余數作為 q 參數傳遞

EDIT2:命名位置僅在服務器級別有效

伙計,這適用於 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
    }
}

我遇到了同樣的問題,這就是為我解決的問題:

  1. 打開您站點的 NGINX 配置文件。 在 server 塊內,添加根目錄的路徑並設置文件的優先順序:

     root /mnt/www/www.domainname.com; index index.php index.html index.htm;
  2. 在所有其他位置塊之前創建一個空位置塊:

     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;

這為我修好了。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM