Doing a redirect in Drupal 8
It appears we can simply pass in the URL and the status code!
Super simple:
use Drupal\Core\Controller\ControllerBase;
\\ ... inside some method eventually
return new RedirectResponse($new_path, $new_status);
It appears we can simply pass in the URL and the status code!
Super simple:
use Drupal\Core\Controller\ControllerBase;
\\ ... inside some method eventually
return new RedirectResponse($new_path, $new_status);