10-16-2019, 07:17 AM
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
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
please help me on this
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;
}
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