Remove index.php from CodeIgniter URL Path using .htaccess
If you are using Codeigniter (PHP Framework) you are noticed that by default index.php will be included with your URL.   But you can easily remove index.php from your URL so that your URL should be like : http://yourdomainname.com/controller/action/var1/var2   To do this just follows the following steps:   1. Open config.php from system/application/config directory… (2 comments)

Download PHP Library (Core)   Download Apache HTTP server http://httpd.apache.org/download.cgi Download PHP http://php.net/downloads.php Download MySql http://dev.mysql.com/downloads/ Download PhpMyAdmin http://www.phpmyadmin.net/home_page/downloads.php Download Wamp Server (apache,mysql,php package) http://www.wampserver.com/en/ Download Xampp Server (apache,mysql,php package) http://www.apachefriends.org/en/xampp.html Download PEAR Libraray (PHP Extension and Application Repository) http://pear.php.net/package/PEAR/download Download PHP Frameworks   Download CakePHP Framework (MVC based architecture) http://cakephp.org/downloads Download CodeIgniter (MVC based…