(sorry I deleted the original thread from my inbox and did not know how to continue it) Just wanted to add that at http://www.documentfoundation.org/download/ I've seen this client side redirection: meta HTTP-EQUIV="REFRESH" content="0; url=http://www.libreoffice.org/download/" As far as I know, Google does not interpret client-side redirections (html, javascript, ...) but only server-side redirections. A way to achieve the same redirection but server-side with PHP[1] is: <?php header('Location: http://www.libreoffice.org/download/', true, 301); ?> Another way to do the same is placing the redirection in Apache's .htaccess[2]. I guess it would be: RedirectPermanent /download http://www.libreoffice.org/download/ Regards. [1] http://es2.php.net/manual/en/function.header.php [2] http://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirectpermanent -- "Make sure that Office documents very well depends on PROPRIETARY IE capabilities." Bill Gates, 1998. -- Unsubscribe instructions: E-mail to website+help@libreoffice.org List archive: http://listarchives.libreoffice.org/www/website/ *** All posts to this list are publicly archived for eternity ***