301 redirect subdomain to domain in wordpress

Discussion in 'WordPress' started by Ashwaria Rai, Jun 23, 2015.

  1. #1
    Can i add 301 redirect from my delete subdomain to main domain


    If yes please let me know hwo....
     
    Ashwaria Rai, Jun 23, 2015 IP
  2. themes4all

    themes4all Well-Known Member

    Messages:
    662
    Likes Received:
    47
    Best Answers:
    6
    Trophy Points:
    100
    #2
    Hello there,

    You have to use this on your .htaccess :

    To redirect requests for sub.yourdomain.com/url to yourdomain.com/url:

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

    To redirect requests for sub.yourdomain.com/uri to yourdomain.com:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^sub.yourdomain.com$
    RewriteRule ^(.*)$ http://yourdomain.com/ [R=301,L]

    Goodluck
     
    themes4all, Jun 28, 2015 IP