我是 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/*.php
to 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;
}
实现这一目标的最佳方法是什么?