Enable SEF URL in Codeigniter
We are familiar with Codeigniter comes with optional SEF URLs, but we use non SEF urls in production or development version.
1
2
http://localhost/index.php/helloworld/welcome/
http://localhost/helloworld/welcom/
In the above snippet we know that line 1 is default URL which contains index.php in URl part that used in development version.
Second line is the deployed version SEF URL, generally [...]