Rails 5 has redirect_back, instead of redirect_to :back. It was changed as it used to raise an exception when request’s HTTP_REFERER was not present.
So use this:
redirect_back fallback_location: root_path
You can change root_path to something else as per your requirements.