Results 1 to 3 of 3

Redirect via .htaccess

This is a discussion on Redirect via .htaccess within the General Discussion forums, part of the vBulletin SEO Discussion category; How do I redirect from one domain to another via .htaccess? Can there be a rule that will redirect mydomain.com/anything ...

  1. #1
    Senior Member
    Join Date
    Nov 2005
    Posts
    165
    Liked
    0 times

    Redirect via .htaccess

    How do I redirect from one domain to another via .htaccess? Can there be a rule that will redirect mydomain.com/anything to mydomain1.com?

  2. #2
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    3,998
    Liked
    11 times
    Hi,

    Something like:
    Code:
    RewriteCond %{HTTP_HOST} !^www\.domain\.com
    RewriteRule (.*) http://www.domain1.com/$1 [R=301,L]
    Should do the trick.

  3. #3
    Junior Member
    Real Name
    hadiya
    Join Date
    Nov 2006
    Posts
    14
    Liked
    0 times
    Hi reefland

    Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
    The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

    RewriteEngine on
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
    REPLACE www.newdomain.com in the above code with your actual domain name.

Similar Threads

  1. Hotlink Protection Tutorial (Apache Server - .htaccess files)
    By NeutralizeR in forum Member Articles
    Replies: 15
    Last Post: 06-08-2011, 03:25 PM
  2. URL's not followed... possible errors in redirect..
    By Sonnie in forum Troubleshooting
    Replies: 39
    Last Post: 10-08-2006, 08:35 PM
  3. .htaccess problem right off
    By eJM in forum Custom Rewrite Rules
    Replies: 10
    Last Post: 08-01-2006, 11:27 PM
  4. Add "www." in .htaccess
    By Jason|Xoxide in forum Custom Rewrite Rules
    Replies: 8
    Last Post: 03-31-2006, 12:54 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •