Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Aviance School is one of the largest web solutions platform in India for developers to learn and share their programming knowledge and build their careers.
In Codeigniter code will run without routes.php
routes.php is used to customise the url of the website. like if you have url like
avianceschool.com/pages/contactus
Here “pages” is a controller and “contactus” is method in that controller.If you want to show url without controller like avianceschool.com/contactus, then you need to write down the code as below.
$route['contactus'] = ['pages/contactus'];