リンク先の同一のページで表示内容をリンク元ごとに変えたい時
<%= link_to "カレンダーで投稿をみる","/posts/#{current_user.id}/index?start_date=#{Date.today.strftime("%Y-%m-%d")}&post_index=0"%>
上記では、params[:start_date]とparams[:post_index]でそれぞれDate.today.strftime("%Y-%m-%d")と"0"という値を受け取れる!
元々のURLの後に"?"で"パラメータ名=値"、複数ならば、その後に"&"と"パラメータ名=値"を続ければよし!