Filed in: CodeIgniter, SEO
Home » CodeIgniter
Hi, In this post i will going to explain about How to write SEO friendly urls in CodeIgniter using .htacess file.
create .htaccess file with the following contents.
123456DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond...
CodeIgniter is framework which is follow the MVC architecture.
MVC means – Model , View and Cotroller.
Model : It is represents for data structures. It is help to retrieve, insert and update information in our database.
View : In generally View is for web page. In CodeIgniter it can be frame like header,footer , RSS feed page.
Controller : It...
Filed in: CodeIgniter




