From: Max Cantor Date: 2007-01-24T17:05:05+09:00 Subject: Clean URLs with Camping and Apache I've set Camping up to run with FastCGI, MySQL and Apache. I've set some RewriteRule directives in an .htaccess file to enable clean URLs with the app, that is: /dev/my_app/foo/0 becomes... /dev/my_app/dispatch.fcgi?foo/0 However, as soon as this URL hits Camping, the clean URLs stop because Camping generates all of its links using the /dev/my_app/dispatch.fcgi?foo/0 approach instead of /dev/my_app/foo/0. Is there a good way to coax this behavior out of Camping? Thanks, Max