Not sure if this will help anyone. I'm dealing with an alias domain with Laravel Forge. I tried the redirect('http://aliasdomain.com', 301) and got a server error. I had to use the redirect()->to('http://aliasdomain.com', 301)->send() to get this to work.