Nginx:如何重写传递给 index.php 的参数?

Nginx:如何重写传递给 index.php 的参数?

我正在努力重写一些 Nginx 传递给 index.php 的 url 参数:

  • 老的:?topic=10126.msg36887
  • 新的:?posts/36887/

我的两个问题:

1)由于它使用“参数/值/”而不是传统的“参数=值”结构,我该如何重写为新的参数结构?

2)我的“if”语句没有触发,我不知道为什么...测试网址domain.com/forum/index.php?topic=10126.msg36887应该重定向到/success,但它根本没有被重写。

这是我当前的 Nginx 配置:

location /forum/ {
    index index.php index.html index.htm;
    try_files $uri $uri/ /forum/index.php?$uri&$args;

    location /forum/index.php {

        # I know Nginx 'If is Evil', but it's the only way 
        # to trigger rewrites on url parameters
        if ($arg_topic ~ [0-9]+\.\bmsg([0-9]+) {

            # testing whether 'if' triggers:
            rewrite ^ /success? redirect;

            # full rewrite:
            # rewrite ^\/forum\/index\.php ^\/forum\/index\.php\?posts\/$1\/? redirect;

            }
        }
    }

location ~ \.php$ {
    try_files $uri =404;
    fastcgi_pass    127.0.0.1:9000;
    fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include         fastcgi_params;
    }

答案1

将其放入server配置块中应该可以工作:正则表达式应该正确匹配您的需要,并且通过将所需的 ID 存储在变量中,您可以稍后在重写中使用它。

假设您在网站的其他部分没有“主题”参数,那么实际上没有必要将其范围限定在某个位置 - 即使您这样做,您也可以更改重写的第一部分以仅匹配/forum/index.php。

if ($arg_topic ~ [0-9]+\.msg([0-9]+)$) {
  set $postid $1;
  rewrite ^ /forum/index.php?posts/$postid? last;
}

答案2

如果仅涉及“主题”论点,则这可能会起作用:

在 nginx.conf 的“http”级别上声明以下“map”:

map $arg_topic $topic_id {
    "~^\d+\.msg(?<id>\d+)" $id;
    default 0;
}

在“服务器”级别添加适当的“位置”:

location = /forum/index.php {

            #if ($topic_id = 0) {
            #      return 403;
            #}

            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_param QUERY_STRING posts/$topic_id/;
            fastcgi_pass 127.0.0.1:9000;
}

确保您已在服务器级别指定“root”指令,以便“SCRIPT_FILENAME”填充正确的值。

您还可以检查“$topic_id”是否为零(例如,topic_id= 缺失或值不正确)。

使用此功能,您的“$_GET”数组将包含类似以下内容:

array(1) {
  ["posts/36887/"]=>
  string(0) ""
}

相关内容