Credit Card Consolidation - Mortgage - Credit Cards - Remortgages - Credit Card

PDA

View Full Version : I need URL redirect to www - Anybody HELP me?


doubler
Mar 21st 2008, 1:43 pm
i am trying to redirect my without www URL with www URL i mean to say

when anybody open http://mysite.com then URL automatically redirect to http://www.mysite.com

so for this i have to some editing in .htaccess file and i did this way

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www
RewriteRule .? http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

and after doing this editing when i open site i get msg that "The Site isn't redirecting properly" so anybody who could tell me what's the problem with...Thanks!

DarkMindZ
Mar 21st 2008, 1:45 pm
Here you go

RewriteEngine On

## Defines base
RewriteBase /

RewriteCond %{HTTP_HOST} ^site.com
RewriteRule (.*) http://www.site.com/$1 [R=301,L]

btw, would you be interested in link exchange with my site, darkmindz.com?

doubler
Mar 21st 2008, 2:01 pm
Here you go

RewriteEngine On

## Defines base
RewriteBase /

RewriteCond %{HTTP_HOST} ^site.com
RewriteRule (.*) http://www.site.com/$1 [R=301,L]

btw, would you be interested in link exchange with my site, darkmindz.com?

Thanks for this, i put this code in .htaccess file but it isn't still working :confused:

DarkMindZ
Mar 21st 2008, 3:46 pm
whats the error?

lephron
Mar 21st 2008, 6:20 pm
I found a blog post that describes how to do it:

http://www.dowling.me.uk/blog/adding-www-to-your-domain-with-apache/

I tested it and it seems to work