i've been working on reset password url, let me get straight to the point. Here's my sample code that i'm working on. I believe it's working fine on apache. But i'm currently working on IIS Server.
$resl_url = base_url() . $this->controller . "/reset_by_link?reset_code=" . $random . "&u=" . $baris->usr_id . "&e=" . $enc_username;
$mail_data['reset_link'] = $resl_url;
it produce this url:
and this is the url that i expected to appear:
Note: this url is being sent by email.
Will appreciate any help. Thank you in advance.