Hi,

I work for a university and we have a section of our website named "/administration" using boost the pages under that url never get cached.

Changing line 1508 of boost.module from:|| preg_match('!^admin!', $normal_path) to || preg_match('!^admin/!', $normal_path)
solves this problem.

Also changing the .htaccess rules to include the slash after admin helps as well:
RewriteCond %{REQUEST_URI} (^/(admin/|cache|misc|modules|sites|system|openid|themes|node/add))|(/(comment/reply|edit|user|user/(login|password|register))$) [OR]

I have no idea if this change breaks anything else...

Thanks,
Ken Colwell