Free Website ROI Calculator (Google Spreadsheet) – Smashing Magazine

Free Website ROI Calculator (Google Spreadsheet) – Smashing MagazineIs your website doing the job you are paying for it to do? The Website ROI Calculator (ROI being “return on investment”) can get you started with setting goals and following them up in order to make the most of your website. The calculator can be used […]

10 useful .htaccess snippets to have in your toolbox | CatsWhoCode.com

10 useful .htaccess snippets to have in your toolbox | CatsWhoCode.com Remove www in url For SEO reasons, you might always remove (or use) the www prefix in your urls. The following snippet will remove the www from your website url and redirect any url with the www to the non-www version. RewriteEngine On RewriteCond %{HTTP_HOST} !^your-site.com$ [NC] RewriteRule ^(.*)$ http://your-site.com/$1 […]