You need to consider what behaviour you'd like if an item is deleted from its own view page..
I'd suggest one of two options:
Keeping your redirect :back
, and implementing some kind of second redirection if the requested resource no longer exists - i.e. /products/10
redirects to /products
@product = Product.find_by_id(params[:id]) # although I admit I'm not sure
redirect_to products_path unless @product # about this
Or change the redirect if the particular path matches the destroyed one
@product.destroy # you might need to save the path before you destroy the object..
redirect_to :back and return unless request.referrer == product_path(@product)
redirect_to products_path
I don't think there's a set-in-stone standard for this kind of scenario, but may I stand corrected.