How to 301 this way?

Discussion in 'Site & Server Administration' started by alvalong, Feb 25, 2008.

  1. #1
    I wanna transfer a site to another domain, i wanna 301 this way.

    www.olddomain.com/xxx/yyy 301 to www.newdomain/xxx/yyy
    www.olddomain.com/ddd 301 to www.newdomain/ddd
    www.olddomain.com/yy.php 301 to www.newdomain/yy.php

    got me? how to do this 301? i know .htaccess can do it ,but how to write ?

    so far, i got this:

    but it is not what i need, help me ,thanks.
     
    alvalong, Feb 25, 2008 IP
  2. Pixelrage

    Pixelrage Peon

    Messages:
    5,083
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Pixelrage, Feb 25, 2008 IP
  3. kulinar

    kulinar Member

    Messages:
    45
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    43
    #3
    After

    RewriteEngine On

    place this code

    RewriteCond %{HTTP_HOST} ^www.olddomain.com$ [NC]
    RewriteRule ^(.*)$ http://www.newdomain.com$1 [R=301,L]
     
    kulinar, Feb 26, 2008 IP