Welcome Guest, Not a member yet? Register   Sign In
Can't Redirect Well In Codeigniter 4
#1

(This post was last modified: 10-17-2019, 12:34 AM by Chivinsdev.)

Hello My Pros,
How are you today please I am having issue to redirect to page.

I customise my app/Config/App.php by adding constructor to it where I auto set the base url like this
PHP Code:
public function __construct()
{
$root = (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS']) ? "https://" "http://") . $_SERVER['HTTP_HOST'];
$root .= str_replace(basename($_SERVER['SCRIPT_NAME']), ''$_SERVER['SCRIPT_NAME']);

$this->baseURL $root;

I want to redirect to localhost/aensd/login
Where aensd is the folder where my application is stored
And It redirect to localhost/login instead of localhost/aensd/login calling error 404


PHP Code:
if ($users->save($user))
{
// Success!

return redirect()->route('login')->with('message'lang('Auth.registerSuccess'));



please help me on this
Reply


Messages In This Thread
Can't Redirect Well In Codeigniter 4 - by Chivinsdev - 10-16-2019, 07:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB