I can't seem to find a solution to what seems to me like a simple problem.
Sitemap.find(:all, :conditions => { :controller => 'sample', :action => '!index' })
Now obviously the ! in 'index' doesn't belong there, but I put it there to illustrate that I want any result EXCEPT 'index'. I've tried something like the line below but I've gotten server errors whenever I try it.
Sitemap.find(:all, :conditions => { :controller => 'sample', "action <> 'index'" })