I am a beginner at CodeIgniter. I want to know how to link one page to another. I tried to like this. I got the error 404 - File Not Found Sorry! I cannot seem to find the page you were looking for.
What I tried so far I attached below. view page:-
<li><a href="<?php echo site_url('aboutus') ?>">Aboutus</a></li>
<li><a href="<?php echo site_url('contactus') ?>">Contactus</a></li>
Controller Page
public function index()
{
return view('index');
}
public function aboutus()
{
return view('about');
}
public function contactus()
{
return view('contact');
}
when the page is loaded, called in the index page index, I made the links about I had a problem
What is wrong here.