There are few methods of redirecting to referer.
Inside your controller action you can use:
return $this->redirect(
$this->getRequest()
->headers
->get('referer')
);
Alternatively you can write it like this:
$request = $this->getRequest();
return $this->redirect($request->server->get('HTTP_REFERER'));
test