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 […]