Contact Us Now

Archive for February, 2011

CodeIgniter HTACCESS remove index.php and add trailing slash

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

HTML Elements Testing Template

HTML Elements Testing Template

When you hand off a HTML template to a developer for integration into a content management system, is it ready for all the variable content HTML has to offer? There’s one way to be sure templates are up to the snuff, and that’s making sure you’ve tested as many basic HTML elements that can be fit into editable content regions.