简体   繁体   中英

Pointing a sub directory to another domain name

I have a domain name as www.something.com and which is hosted in a windows server.Now i have created a directory inside on it as www.something.com/help and need to point that to another server, I need to install a wordpress website on that. How can i point that.

You could set up a php redirect by creating an index.php file and placing the following in it:

<?php
header ('HTTP/1.1 301 Moved Permanently');
header("Location: http://www.anotherdomain.com");
?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM