PDA

View Full Version : How redirect folder old domain to subdomain new domain


Emad ELsayed
09-21-2015, 07:30 PM
How can work redirect folder old domain to subdomain new domain

Example / I want the redirect

old.com/vb
to
forum.new.com

Best regards

Emad ELsayed
10-14-2015, 08:25 PM
any help

thetechgenius
10-15-2015, 08:41 PM
Here, try this.

create a new text file using Notepad++ and copy and paste this bit of code inside it:



<?php

header( 'Location: http://www.yoursite.com/new_page.html' ) ;

?>



Change the text in red to your new subdomain, and save the file as "index.php". Put the index file inside old.com/vb.

Now when people go to old.com/vb, they will be redirected to your new subdomain.

You could also do this in your Domain DNS Settings, or with htaccess. The option I showed you is the easiest way.