On Thu, Jan 20, 2011 at 11:21 AM, Og Maciel <ogmac...@gnome.org> wrote:

> Feedback appreciated!
>
>

http://foresightlinux.org is not displaying (times out).  I suspect that
there is a virtualhost problem where the server is not recognizing things
because www is not on the front side.

If this is true it can be fixed quickly (if apache) using vhosts.  However,
it's going to provide a problem though because search engines will see
www.foresightlinux.org and foresightlinux.org as 2 separate sites that need
indexing.  After you fix the www problem you can reduce things as far as
search engines go by directing spiders and users to one website.  I
recommend losing the www prefix since most people don't type www on the
front of URLs anymore:

If hosted on apache, put the following in .htaccess:

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


Regards,

devnet
_______________________________________________
Foresight-devel mailing list
Foresight-devel@lists.rpath.org
http://lists.rpath.org/mailman/listinfo/foresight-devel

Reply via email to