Web Design Forum: redirecting non www to www.domain - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

redirecting non www to www.domain help

#1 User is offline   waynede 

  • Expert
  • PipPipPipPip
  • Group: Members
  • Posts: 531
  • Joined: 30-April 09
  • Reputation: 23
  • Gender:Male
  • Location:Essex, UK
  • Experience:Intermediate
  • Area of Expertise:Designer/Coder

Posted 27 September 2011 - 07:55 AM

Hey all,

I am trying to get waynedeboer.co.uk to redirect to www.waynedeboer.co.uk

Here is the code I am using in my htaccess file:

OnRewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]

RewriteEngine On
RewriteCond %{HTTP_HOST} ^waynedeboer.co.uk
RewriteRule (.*) http://www.waynedeboer.co.uk/$1 [R=301,L]


Any help is appreciated.
0

#2 User is offline   SamFowlerWeb 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 14
  • Joined: 23-September 11
  • Reputation: 0
  • Gender:Male
  • Location:Peterborough
  • Experience:Intermediate
  • Area of Expertise:Designer/Coder

Posted 27 September 2011 - 09:08 AM

View Postwaynede, on 27 September 2011 - 07:55 AM, said:

Hey all,

I am trying to get waynedeboer.co.uk to redirect to www.waynedeboer.co.uk

Here is the code I am using in my htaccess file:

OnRewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]

RewriteEngine On
RewriteCond %{HTTP_HOST} ^waynedeboer.co.uk
RewriteRule (.*) http://www.waynedeboer.co.uk/$1 [R=301,L]


Any help is appreciated.


Hello there waynede,
If you are using htaccess file to do it i would go with ( just a small change from yours ):
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]


Hope this helps :)

Sam

This post has been edited by SamFowlerWeb: 27 September 2011 - 09:15 AM

0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users