submitting through
<form action="/user/" method="post">
correctly maps to :controller => 'user', :action => 'create'
but
<form action="/user" method="post">
maps to :controller => 'user', :action => 'index'
as though i submitted a get. even when i hit refresh afterwards in the browser, it doesnt give me the confirmation warning about refreshing with post data.
really strange stuff, and this is only happening on your server in production; on my local machine it behaves normally. we're running the same version of ruby 1.8.6 and my rails code is in the /vendor directory, so we're running the same rails.
any ideas? micah.
ps. sorry if this has been covered in the forum somewhere, your search button is permanently greyed out for me. you might want to look into that as well.