Lighttpd 的 mod_rewrite

Lighttpd 的 mod_rewrite

我想将 /abc/abcd.png 重写为 /red/blue.php

在 Lighttpd 中如何实现这一点?

答案1

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

查看 lighttpd 文档了解更多信息http://redmine.lighttpd.net/wiki/1/Docs:ModRewrite

相关内容