Welcome Guest, Not a member yet? Register   Sign In
Codeigniter 4 Redirect not working
#1

Codeigniter 4
Im visiting my /admin route. During the execution im checking stuff so im inside a Library updating my routes file (for caching purposes) After this i want to redirect to the same route (/admin) But this doesnt work.

Ive tried:

```
$theurl = current_url(); //outputs http://mylocalurl.local/admin
redirect($theurl);


$theurl = current_url(); //outputs http://mylocalurl.local/admin
redirect()->to($theurl);

redirect("/admin");

redirect()->to("/admin");

redirect("admin");


redirect()->to("admin");
```


Ive added this in my Config/Routes.php file:
```
$routes->add('admin', 'Company\Admin\Controllers\Admin::index');
```

Any ideas?
Reply
#2

Since you aren’t using a named route you should definitely use the “to()” method. This method expects a full URL for input, so partials will often work but you’re safer to do something like:
return redirect()->to(site_url(‘admin’));
Reply




Theme © iAndrew 2016 - Forum software by © MyBB