[OT] webserver ?

Alexander Dalloz alexander.dalloz at uni-bielefeld.de
Mon May 3 18:23:34 UTC 2004


Am Mo, den 03.05.2004 schrieb Michael Weiner um 19:31:

> I have a rather large domain i am responsible for running a webserver,
> and in an effort to improve the site's rankings in search engines, a
> consulting firm has suggested some interesting changes to the way the
> webserver operates. Their first suggestion which i am struggling with is
> to take all requests to http://w.blah, http://ww.blah and send a 301
> redirect back to the user to http://www.blah. Not being an apache
> rewrite module expert, i thought i would throw the question out to the
> community at large and see what suggestions might arise.

I don't know how such a redirect would influence search engine ranking,
but using mod_rewrite would looks like:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.      [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*)        http://www.%{HTTP_HOST}/$1   [R=301]

(I hope it will survive line wrapping, above instructions are 4 lines)

See: http://httpd.apache.org/docs-2.0/mod/mod_rewrite.html for further details.

Alexander


-- 
Alexander Dalloz | Enger, Germany | GPG key 1024D/ED695653 1999-07-13
Fedora GNU/Linux Core 1 (Yarrow) on Athlon CPU kernel 2.4.22-1.2188.nptl
Sirendipity 20:18:55 up 6 days, 19:07, load average: 0.72, 0.40, 0.30 
                   [ Γνωθι σ'αυτον - gnothi seauton ]
             my life is a planetarium - and you are the stars
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: Dies ist ein digital signierter Nachrichtenteil
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20040503/0ad88f44/attachment-0001.sig>


More information about the fedora-list mailing list