Well, Lighttpd by itself cannot support direct rewrites like this. However, you should compile Lighttpd with LUA (mod_magnet). Once you have that, you can simply do the following
in lighttpd.conf
magnet.attract-physical-path-to = (\"/etc/lighttpd/joomla.lua\"«»)
in /etc/lighttpd/joomla.lua
if (not lighty.stat(lighty.env[\"physical.path\"])) then
lighty.env[\"physical.path\"] = lighty.env[\"physical.doc-root\"] .. \"index.php\"
end
That should take care of all SEF urls. Keep in mind that it simply checks to see if a file exists, and if not, points the request to /index.php<br><br>Post edited by: ircmaxell, at: 2007/10/08 15:56