2
I am making a site with administrative area using the Codeigniter Framework. In the administrative area, the user can create new pages for the site. The contents of the page will be saved in a database.
The controller that reads the database pages is called: page
So when pages are created, they are currently accessed like this:
- www.site.com.br/page/pagina1
- www.site.com.br/page/page2
My question: You can delete the word "page" from the URL using the Routing URI?
Thank you. That’s what I’ve been looking for.
– Pedro