Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

Textpattern clean urls with Lighttpd, the elegant way (See related posts)

I love this shit:

server.error-handler-404 = "/index.php"

Comments on this post

jdueck posts on May 30, 2005 at 03:59
Arhem...

Doesn't this mean that all of your site traffic gets logged as a 404?

-JD
phq posts on Jan 13, 2009 at 00:15
This is what I use
url.rewrite-once = (
       "^/files/.*" => "$0",
       "^/images/.*" => "$0",
       "^/rpc/.*" => "$0",
       "^/textpattern/.*" => "$0",
       "^(.*)$" => "/index.php/$1",
)

You need to create an account or log in to post comments to this site.


Related Posts