我想编写一个脚本,在 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