Has anyone successfully implemented this running lighttpd? I'm trying to swap over to lighttpd, and I've got the mod_rewrite running and put the rewrite rules in and nearly everything works, except when you click the "Arrow" on a forumdisplay that takes you directly to a certain post in the format :
Code:
http://www.url.com/forum/showthread.php?p=12345#post12345
This URL is rewritten as :
Code:
http://www.url.com/forum/thread-title-t123.html?p=12345#post12345
Apache can handle that, lighttpd gives a 404. Here's the rewrite rules I have in place for lighttpd. Anyone help?
url.rewrite = ( "^/forum/([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$" => "/forum/forumdisplay.php/$1", "^/forum/([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$" => "/forum/showthread.php/$1" )