1 For ImageCache to work properly it needs to be able to make use fou clean URLs.
2 This requires some webserver specific setup.
8 http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls
10 LightHTTPD 1.4.24 and later:
11 https://veracium.com/content/imagecache-lighttpd-witho
14 add an error404.asp that passed everything to drupal.
18 strQString=Request.ServerVariables("QUERY_STRING")
19 If (InStr(strQString,"/d5/")) Then
20 pos=Instr(strQString,"/d5/")+3
21 Id=Right(strQString,Len(strQString)-pos)
22 Response.Redirect("/d5/index.php?q=" & Id)
24 Response.Redirect("index.htm")