link_to_remote(Ajax)を使った場合に起こるActionController::MethodNotAllowedの解決策
link_to_remoteでページを呼び出すときのメソッドはデフォルトでGETにならない。よって、GETで呼び出すはずのページをメソッドを指定せずにlink_to_remoteで呼び出すとエラーが起こる。
解決策は明示的にメソッドを指定する。link_to_remote "link", :url => hogehoge_path, :method => :getとする。