1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

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