redirect to www.

Discussion in 'Site & Server Administration' started by Nathan Mclean, Nov 26, 2013.

  1. #1
    1) How to make my site re-direct to www.

    2) How to make my site re-direct all 404 to /

    My site - www.trustscotland.co.uk
     
    Solved! View solution.
    Nathan Mclean, Nov 26, 2013 IP
  2. #2
    in .htaccess file paste the code below

    
    RewriteEngine On
    
    ErrorDocument 404 /404.php
    ErrorDocument 401 /404.php
    
    RewriteCond %{HTTP_HOST} !^(www|mobile)\.
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
    Code (markup):
     
    manish_khanna, Nov 26, 2013 IP
  3. manish_khanna

    manish_khanna Member

    Messages:
    58
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    35
    #3
    If the HOST is not www or Mobile ( if you have any other sub domain that can be added in here )

    you may be interested in how to move your ww.trustscotland.co.uk/index.php to ww.trustscotland.co.uk too

    RewriteRule ^index.php$ http://www.trustscotland.co.uk/ [R=301,L]
    Code (markup):
    Let me know if you have any other question

    Manish @ Business2Sell.com.au
     
    manish_khanna, Nov 26, 2013 IP
  4. Nathan Mclean

    Nathan Mclean Member

    Messages:
    86
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    45
    #4
    god bless you brother!
     
    Nathan Mclean, Nov 26, 2013 IP