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
there are some redirection problems ( well it only works with absolute paths for me )
e.g redirect()->route( 'ROUTE', [], 302 ) will route to HOST/ROUTE instead of HOST/BaseURL/ROUTE response->redirect( '/ROUTE' ) have the same result
public $baseURL = 'https://*******/WorkDirectory/PHPPlayground/CodeIgniter4/public/';
reproduce:
Location: /Home
https://*******/Home
https://*******/WorkDirectory/PHPPlayground/CodeIgniter4/public/Home
The text was updated successfully, but these errors were encountered:
currently i use $this->setHeader('Location', config( App::class )->baseURL.ltrim( $uri, '\\' ) ); as a temporary fix
$this->setHeader('Location', config( App::class )->baseURL.ltrim( $uri, '\\' ) );
Sorry, something went wrong.
fixed by #1147
No branches or pull requests
there are some redirection problems ( well it only works with absolute paths for me )
e.g redirect()->route( 'ROUTE', [], 302 ) will route to HOST/ROUTE instead of HOST/BaseURL/ROUTE
response->redirect( '/ROUTE' ) have the same result
public $baseURL = 'https://*******/WorkDirectory/PHPPlayground/CodeIgniter4/public/';
reproduce:
Location: /Home
https://*******/Home
instead ofhttps://*******/WorkDirectory/PHPPlayground/CodeIgniter4/public/Home
The text was updated successfully, but these errors were encountered: