What is Ruby on Rails Ruby on Rails (or just “Rails” for short) is a server-side web application development framework written in Ruby language by David Heinemeier Hansson. It allows you to write less code than other languages and frameworks. Ruby is a dynamic, reflective, general-purpose object-oriented programming language that combines syntax inspired by Perl … Continue reading Ruby on Rails Introduction
Day: March 29, 2018
To remove index.php from url, please use following steps: 1. Open the file config.php located in application/config path. Find and Replace the below code in config.php file. // Find the below code $config['index_page'] = "index.php" // Remove index.php $config['index_page'] = "" 2. Go to codeigniter application root follow and create .htaccess file. 3. Write following code in … Continue reading Codeigniter Remove index.php from URL