What is the default URL pattern used in Codeigniter framework?

devquora
devquora

Posted On: Feb 22, 2018

 

In CodeIgniter, URLs are designed to be search-engine and human-friendly.CodeIgniter uses a segment-based approach rather than using “query string” based approach.
abc.com/user/edit/ramesh

The default URL pattern in CodeIgniter consists of 4 main components. They are :

  1. A server name (abc.com)
  2. A Controller (user)
  3. An Action or method (edit)
  4. An optional action parameter (ramesh)

Prepare 10  Essential Magento Interview Questions

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    CodeIgniter Interview Questions

    How to check the version of CodeIgniter framework?

    How to check the version of CodeIgniter framework?..