尝试设置一个继承的 nginx 来执行我的命令,但是有点失败。
我有典型的 nginx Wordpress 设置:
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
到目前为止一切顺利。但我还需要检查以前安装的旧 URL 是否遵循以下模式:
^(ninos|familia|hogar|mujeres|hombres)(-[a-z-]+){1,3}\.php
并将它们连同其参数一起直接定向到 index.php,因为 WP 将使用正确的 301 重定向到新的 URL 来处理它们。
我该怎么做?我应该在location ~ \.php$
? 内嵌套另一个位置吗?或者在外面有另一个单独的位置块,复制 ? 的配置location ~ \.php$
(减去“try_files $uri =404”;我猜这会破坏一切)。
非常感谢,敬请收看。Nginx 新手。尝试了文档,但让我感到困惑...
答案1
最终通过添加额外的位置块来修复它,如下所示:
location ~ "(ninos|familia|hogar|mujeres|hombres)(-[a-z-]+){1,3}\.php$" {
try_files $uri /index.php?$args;
}
希望我没有破坏其他任何东西...:P
更新:
在@tero-kilkanen 提出有益的建议后,我将上述内容替换为:
location ~ "(ninos|familia|hogar|mujeres|hombres)(-[a-z-]+){1,3}\.php$" {
rewrite ^ /index.php?$args last;
}