Making Codeigniter clean URLs cleaner
Usually when working with codeigniter you come across the use case where you need to remove the extra “index” appearing in the URL for purposes ranging from shorter URLs to SEO.
For example,
Current URL style: http://example.com/controller/method/category1/category2/page-name Target URL style: http://example.com/category1/category2/page-name.html
