I'm new in Codeigniter I'm not sure how to use Codeigniter Routing. I've created the Contact.php
in the controller folder and contact.php
in the views folder.
In routes.php I have put $route['Contact'] = 'controller/contact';
but when I enter the url http://mytest.dev/contact/ it shows 404 Page Not Found. The page you requested was not found.
I want when I enter "http://mytest.dev/contact" it will show the contact page
Thanks in advance.