0

我想编写一个脚本,在 mod_lua 中重写一个 URL,即我想继承查询字符串,如 mod_rewrite 的 QSA 标志。

mod_rewrite 配置:

RewruteCond ^/foobar/([0-9A-Za-z]+)/(.+)$
RewriteRule ^.*$ /foobar/$2?_ID_=$1 [QSA,L]

我尝试在 mod_lua 中编写如下代码,但效果不佳。请告诉我有什么问题吗?并且,它是否将能够是更简单的代码?

mod_lua 配置:

LoadModule lua_module modules/mod_lua.so
LuaHookTranslateName /usr/local/httpd/conf/extra/lua/router.lua app_routing

/usr/local/httpd/conf/extra/lua/router.lua 路由:

require "apache2"
function app_routing(r)
  local matches = r:regex(r.uri, [[^/foobar/([0-9A-Za-z]+)/(.+)$]])
  if matches then
    r.uri  = "/foobar/" .. matches[2]
    if r.args then
        r.args = r.args .. "&_ID_=" .. matches[1]
    else
        r.args = "?_ID_=" .. matches[1]
    end
  end
end
4

1 回答 1

0

在我们真正研究解决问题之前,有几件事:

  • r.args 不应该以“?”开头,问号不存在于查询字符串中,它是一个分隔符,用于表示查询字符串的开始位置,因此它实际上不是字符串本身的一部分。
  • 您应该为 mod_lua 和您的脚本启用调试。尝试将“LogLevel lua:debug”添加到您的配置中并检查调试输出的错误日志。此外,使用 r:info(logmessage_here) 为您的脚本添加一些调试,这将在错误日志中显示您自己的调试消息。

完成此操作后,我们将获得一个值得检查提示的错误日志。

于 2015-07-14T11:01:26.950 回答