-1

I'd like to rewrite /abc/abcd.png to /red/blue.php

How is that possible in Lighttpd?

Steven
  • 617
  • 2
  • 6
  • 7

1 Answers1

2

url.rewrite("^/abc/abcd.png$" => "/red/blue.php")

check out the lighttpd docs for more info http://redmine.lighttpd.net/wiki/1/Docs:ModRewrite

rodjek
  • 3,297
  • 16
  • 14