Nginx PHP-FPM 上的 CakePHP 和 Wordpress

Nginx PHP-FPM 上的 CakePHP 和 Wordpress

我正在尝试在同一台服务器上配置 CakePHP 和 wordpress 博客。

CakePHP 在这里:http://site.com/

Wordpress 博客在这里:http://site.com/blog/

有效的方法:整个 CakePHP 应用程序并转到 /blog/。

无效的方法:转到 /blog/permalink/。它显示 CakePHP 404 页面。

/blog/ 可以使用或不使用下面的“# Blog config”。如何使 /blog/permalink/ 工作?我习惯使用 Apache。

编辑:有人建议我的问题与这个帖子但是如果我使用该解决方案或下面的解决方案(注释 # Blog config),它会给我一个 CakePHP 404 页面。这意味着 /blog/permalink/ 不会命中 wordpress 的 index.php。

upstream backend {
    server unix:/var/www/apps/appname/tmp/php.sock;
}

server {
    listen 80 default;
    root    /var/www/apps/appname/public/app/webroot;
    index   index.php index.html index.htm;

    server_tokens off;

    access_log  /var/www/apps/appname/logs/access.log;
    error_log   /var/www/apps/appname/logs/error.log;

    client_max_body_size 20M;

    rewrite_log on;

    # Blog config
    location /blog/ {
        try_files $uri $uri/ /blog/index.php?$args;
    }

    # Not found this on disk? 
    # Feed to CakePHP for further processing!
    if (!-e $request_filename) {
        rewrite ^/(.+)$ /index.php last;
        break;
    }

    # Pass the PHP scripts to FastCGI server
    # listening on 127.0.0.1:9000
    location ~ \.php$ {
        fastcgi_pass   backend;
        fastcgi_index  index.php;
        fastcgi_intercept_errors on; # to support 404s for PHP files not found
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

    # Static files.
    # Set expire headers, Turn off access log
    location ~* \favicon.ico$ {
        access_log off;
        expires 1d;
        add_header Cache-Control public;
    }
    location ~ ^/(img|cjs|ccss)/ {
        access_log off;
        expires 7d;
        add_header Cache-Control public;
    }

    location ~ ^/(php_status|php_ping)$ {
      fastcgi_pass backend;
      fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
      include fastcgi_params;
      allow 127.0.0.1;
      deny all;
    }

    location /nginx_status {
      stub_status on;
      access_log off;
      allow 127.0.0.1;
      deny all;
    }

    # Deny access to .htaccess files,
    # git & svn repositories, etc
    location ~ /(\.ht|\.git|\.svn) {
        deny  all;
    }
}

答案1

这看起来像是你的问题。它重写所有 URL,而不仅仅是那些发往 CakePHP 的 URL。这是最常见的 nginx 配置错误

    # Not found this on disk? 
    # Feed to CakePHP for further processing!
    if (!-e $request_filename) {
        rewrite ^/(.+)$ /index.php last;
        break;
    }

应该将其删除并替换为块try_files中的等效块location /(您似乎没有,因此请创建一个)。

    location / {
        try_files $uri $uri/ /index.php;
    }

相关内容