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
11 add an error404.asp that passed everything to drupal.
15 strQString=Request.ServerVariables("QUERY_STRING")
16 If (InStr(strQString,"/d5/")) Then
17 pos=Instr(strQString,"/d5/")+3
18 Id=Right(strQString,Len(strQString)-pos)
19 Response.Redirect("/d5/index.php?q=" & Id)
21 Response.Redirect("index.htm")