I have a problem with 404 error in CodeIgniter.I have in controller:
public function show($id = 0)
{
$review = $this->site_reviews->get_review($id);
if ($review)
{
.....
}
else
{
show_404();
}
Now if I add to the end of link for example : /?id=13865 or /?id=42788?id=42788 all goes well...How to show_404()..Exist a solution?