Here is a quick HTACCESS snippet that will add the trailing slash (ex: http://domain.com/mycontroller to http://domain.com/mycontroller/) and will remove the index.php from the URL (ex: http://domain.com/index.php/mycontroller/ to http://domain.com/mycontroller/) RewriteEngine On RewriteBase / # this adds trailing slash RewriteCond %{REQUEST_FILENAME} !-f ... Read more
Archive for the ‘CodeIgniter’ Category
CodeIgniter HTACCESS remove index.php and add trailing slash
CodeIgniter 2 and Doctrine 2 Integration – A working setup (DoctrineIgnited)
As Widly Inaccurate states, CodeIgniter is a wonderful PHP framework which allows rapid application development. CodeIgniter lacks a base DBLayer and ORM and makes working with multiple databases that need CRUD capabilities a pain; that’s where Doctrine comes in. Instead ... Read more
