| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
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 pre-1.4.24: 8 http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls 9 10 LightHTTPD 1.4.24 and later: 11 https://veracium.com/content/imagecache-lighttpd-witho 12 13 IIS 6: 14 add an error404.asp that passed everything to drupal. 15 16 <% 17 Response.Expires=0 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) 23 End If 24 Response.Redirect("index.htm") 25 %> 26 27 28
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |