On Thu, Sep 2, 2010 at 7:12 AM, Alexandre Prokoudine <alexandre.prokoudine@...400...> wrote:
> On the topic of the website, there's also the minor issue of dual
> domains serving the same web content (inkscape.org and
> www.inkscape.org). This is not recommended by google, AFAIR, and one
> ought to be a permanent 301 redirect to the other. This should just
> need an apache rewrite directive adding to the .htaccess file.

Please send me the code. I'll contact OSUOSL to have that changed. I
don't think I have write access to *that* :)

.htaccess, not httpd.conf - .htaccess lives in the web root (i.e. the root of the SVN repository) and you can change it.  Here's what we need to move www.inkscape.org to inkscape.org.  (That is the direction I would shift it.)  Put it at the end of the file.

RewriteCond %{HTTP_HOST} ^www.inkscape.org$ [NC]
RewriteRule ^(.*)$ http://inkscape.org/$1 [L,R=301]


-- Chris