Rails サイトのこのページと同じフォルダーにあるページへのリンクがあります。
<%= link_to 'Special Access', 'followers/special_access' %>
ただし、このページにアクセスすると、その URL に別のページが表示されます。
<p id="notice"><%= notice %></p>
<div id="sent">
<p>Your request has been sent</p>
<%= link_to 'Home', followers_path %>
</div>
HTMLの元のページを削除しようとしましたが、まずそのページが必要で、エラーも発生します。
以下を含むようにコントローラーを編集しました。
def special_access
format.html { redirect_to followers/special_access }
format.json { render :json => @post }
end
それ以外の
def show
しかし、それでも問題は解決しませんでした。
適切な html を適切なページに表示するにはどうすればよいですか?