1

我是 Nginx 的新手,并试图将我对 WordPress 网站的以下规则从 Apache 转换为 Nginx。我从运行 Nginx 1.4.6 的 Ubuntu 机器上的默认 Nginx 配置开始。

RewriteCond %{REQUEST_URI} !^/wp-content/themes/path/to/exclude/file\.php
RewriteRule wp-content/themes/(.*\.php)$ log.php?f=$1 [L]

上面的规则将所有请求重写为wp-content/themes/*.phpto security-log.php,但规则中定义的文件除外RewriteCond

据我所知,在 Nginx 中执行此操作的方法是使用该location块。我尝试了以下方法(我仍然不确定如何排除特定文件/文件夹)。

location = /wp-content/plugins/(.*\.php)$ {
    try_files /security-log.php =404;
}

上面的规则似乎被完全忽略了(也许我的正则表达式有问题?)。

如果我提供如下固定路径,则会调用该规则,但 Nginx 将提供 PHP 文件(浏览器将下载该文件)而不是使用 PHP 解释器执行它(这很可能是因为fast-cgi没有被调用)。

location = /wp-content/plugins/test.php {
    try_files /security-log.php =404;
}

实现这一目标的最佳方法是什么?

4

2 回答 2

1

您的第一次尝试是正则表达式位置的无效语法。它应该看起来像这样:

location ~ ^/wp-content/plugins/.*\.php$ { ... }

而不是try_files指令,您应该使用rewrite,如下所示:

rewrite ^ /security-log.php last;

当然,这两种方法都不匹配.htaccess文件的功能。

您已经观察到处理 PHP 文件的位置块必须包含fastcgi指令。这可以通过将它们放入单独的文件并使用include指令将它们拉入多个location块中来实现。

这意味着可以通过在现有块.htaccess之前放置一个正则表达式位置来实现该文件。location ~ \.php$例如:

location = /wp-content/themes/path/to/exclude/file.php {
    include common-php-directives;
}
location ~ ^/wp-content/themes/.*\.php$ {
    rewrite ^/wp-content/themes/(.*\.php)$ /log.php?f=$1 last;
}
location ~ \.php$ {
    include common-php-directives;
}

有关位置语法,请参阅此文档

于 2016-03-31T18:07:52.610 回答
0

我可以推荐你作为 nginx 的新用户阅读这个陷阱文档https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/

对于 wordpress 设置: https ://www.nginx.com/resources/wiki/start/topics/recipes/wordpress/

于 2016-04-07T20:35:08.143 回答