Windows Environment Install XAMPP or WAMP Download and Unzip the package from Codeigniter.com Extract all the documents in the server space (htdocs or www directory) Linux Environment Download and Unzip the package from Codeigniter.com Place the extracted folder in /var/www (in WAMP) or xampp/htdocs (XAMPP) Base URL Go to application/config/config.php Define base URL as $config['base_url'] = 'http://localhost/path/to/folder'; How to remove index.php from URL? go to root create htaccess file Add below code inside it RewriteEngine on RewriteCond $1 !^(index\.php|assets|image|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA] Note: .htaccess code varies depending on the hosting server. Some hosting servers (e.g.: Godaddy) need to use an extr...
The Developer Club is a web programming tutorial blog. In tutorials we mainly focused on programming queries related to php, mysql, javascript, css, css3, jquery, Ajax, Codeigniter Framework, Android developement, RESTAPI, Android SDK and gradle etc.