| 1 |
For ImageCache to work properly it needs to be able to make use fou clean URLs.
|
| 2 |
This requires some webserver specific setup.
|
| 3 |
|
| 4 |
Apache2 + mod_rewrite
|
| 5 |
Works out of the box.
|
| 6 |
|
| 7 |
LightHTTPD:
|
| 8 |
http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls
|
| 9 |
|
| 10 |
IIS 6:
|
| 11 |
add an error404.asp that passed everything to drupal.
|
| 12 |
|
| 13 |
<%
|
| 14 |
Response.Expires=0
|
| 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)
|
| 20 |
End If
|
| 21 |
Response.Redirect("index.htm")
|
| 22 |
%>
|
| 23 |
|
| 24 |
|
| 25 |
|