Forum Moderators: phranque

Message Too Old, No Replies

how to automatically add www prefix?

how to automatically add www prefix?

         

dinodonk

7:47 pm on Dec 23, 2005 (gmt 0)

10+ Year Member



how to redirect all mydomain.com to www.mydomain.com

i have tried :
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mydomain\.com [NC]
RewriteRule ^(/.*) [mydomain.com...] [L,R=301]

it only works for domain.com/something , not work for domain.com/forum/something

TIA

jdMorgan

8:08 pm on Dec 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



For use in .htaccess:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

Jim

dinodonk

2:21 am on Dec 24, 2005 (gmt 0)

10+ Year Member



Thanks jim,
it works for example.com/forum ( no trailing slash )
but that doesn't work too for
example.com/forum/showthread.php
example.com/forum/

Regards