I think I know what your trying to do
That of trying to ensure that the domain is only reachable by one way
ie only
www.domain.com
and not domain.com as well
I guess that like me you read that it will concentrate PR to the one
phpbb do it themselves!
try typing in just phpbb.com
it will rewite to
www.phpbb.com
Now I may too be making the same mistake if this is a negative
I used
Quote:<Files .htaccess>
Order allow,deny
deny from all
</Files>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^.*domain\.com [NC]
RewriteRule (.*)
http://www.domain.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$
http://www.domain.com/$1 [R=301,L]
The first being cravens rewrite to stop ip being identified!(hopefully correctly done by me)
tell me please Craven is the latter bad(or not smart) practise then?
Plus the first method will this help stop ip identification with a third level or sub domain as well (as long as you do the full url for the domain) ?