Comment on Show HN: Mixest, my summer project that crawls the web for new indie musicparentComments−justindocanto14yim going to catch shit for choosing www over no-www, but if you want to make it so everybody is funneled to ONE domain (ie. www.mixest.com) put this in your htaccess and your problem will be solved.RewriteEngine OnRewriteCond %{HTTP_HOST} ^mixest.com$ [NC]RewriteRule ^(.*)$ http://www.mixest.com/$1 [R=301,L]... just without the double spacing. HN was turning it into one line if I didn't double space.
Comments
im going to catch shit for choosing www over no-www, but if you want to make it so everybody is funneled to ONE domain (ie. www.mixest.com) put this in your htaccess and your problem will be solved.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mixest.com$ [NC]
RewriteRule ^(.*)$ http://www.mixest.com/$1 [R=301,L]
... just without the double spacing. HN was turning it into one line if I didn't double space.