Skip to content

Instantly share code, notes, and snippets.

@sibsfinx
Last active November 20, 2015 08:41
Show Gist options
  • Save sibsfinx/5441b2defad00c1d1e77 to your computer and use it in GitHub Desktop.
Save sibsfinx/5441b2defad00c1d1e77 to your computer and use it in GitHub Desktop.
rails slug redirect
def show
@post = Post.friendly.find(params[:id])
if request.path != post_path(@post)
expires_in 8.hours, :public => true
return redirect_to @post, :status => :moved_permanently
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment