阿帕奇有mod_lua
. 有没有办法让它处理一个带有类似于 php 的标签的 html 页面?
如果没有,还有其他方法吗?(我见过mod_plua
,但似乎没有太多工作要做)。
对于 php 风格的 Lua 编程,你绝对可以使用 mod_pLua。与您最初的陈述相反,它确实有很多工作要做,只需看看它支持的额外功能。mod_lua 以后会不会支持这种编程……谁知道呢:)
You need to update your config. In your Apache config, add the following lines of code:
AddHandler lua-script .lua
AddHandler lua-script .htm .html
That should set the handler for html files to mod_lua (not tested as I don't use this mod).