We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if you simply write like this, then there will not be a redirect, it will exactly transmit the status 200 in the head of it
redirect()->to('http://you.com/',302);
But if forcibly set through exit (302)
redirect()->to('http://you.com/',302); exit(302); Works
Please note that the redirect inside the site is working properly! redirect()->to('/panel',302, 'refresh');
The text was updated successfully, but these errors were encountered:
The docs were updated last night in the repo, though they haven't been pushed out yet.
What you need to do is to return redirect()
return redirect()
Sorry, something went wrong.
No branches or pull requests
if you simply write like this, then there will not be a redirect, it will exactly transmit the status 200 in the head of it
redirect()->to('http://you.com/',302);
But if forcibly set through exit (302)
redirect()->to('http://you.com/',302);
exit(302);
Works
Please note that the redirect inside the site is working properly!
redirect()->to('/panel',302, 'refresh');
The text was updated successfully, but these errors were encountered: