How to do a Post/Redirect/Get using Sinatra?
Redirect in Sinatra is the most simple to use. So the code below can explain: require ‘rubygems’ require ‘sinatra’ get “https://stackoverflow.com/” do redirect “http://example.com” end You can also redirect to another path in your current application like this, though this sample will delete a method. delete ‘/delete_post’ do redirect ‘/list_posts’ end A very common place … Read more