Tag: codeignitor

Removing index.php from URL when using CodeIgniter

Posted on 12/27/10 No Comments

When using php codeigniter framework, we have to remove index.php from the url.  After removing the index.php, the url will look like http://www.example.com/codeigniter/sample.  This is useful for creating better Search Engine Friendly URLs for your web site. Steps to follow: Create a .htaccess file in the root of the project with contentsRewriteEngine on RewriteCond $1 [...]

Read more