Please help with paging problem

Hello,

I have my app deployed on Apache/Mongrel on Windows XP
This link works fine:
http://localhost:8080/cdsurvey/employees
when I press the Next page link, it fails.
the link now looks like:
http://localhost:8080/employees?page=2
instead of
http://localhost:8080/cdsurvey/employees?page=2
here is my config.

Thanks
Frank
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all

Alias /cdsurvey “c:/rails”
<Directory “C:/rails/cdsurvey/public”>
Options Indexes FollowSymLinks
AllowOverride none
Order allow,deny
Allow from all

ProxyPass /cdsurvey/images !
ProxyPass /cdsurvey/stylesheets !
ProxyPass /cdsurvey/javascripts !
ProxyPass /cdsurvey/ http://127.0.0.1:4000/
ProxyPassReverse /cdsurvey/ http://127.0.0.1:4000/