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 </Proxy> Alias /cdsurvey "c:/rails" <Directory "C:/rails/cdsurvey/public"> Options Indexes FollowSymLinks AllowOverride none Order allow,deny Allow from all </Directory> 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/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---