Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Hello I would like to split a Wordpress site in 2. one category of pages will be shown on: www.domain1.com and the other category of pages will be show on www.domain2.com.

On the website hosting I have aliasing on.

The current site is build with joomla (...) and the script that handles the right movement is:

if($secid == 1 && ($siteurl == 'http://www.domain1.nl')){
Header( "HTTP/1.1 301 Moved Permanently" ); 
Header( "Location: http://www.domain2.nl" . $url_suffix . '/' . $url );
}

if($secid == 2 && ($siteurl == 'http://www.domain2.nl')){
Header( "HTTP/1.1 301 Moved Permanently" ); 
Header( "Location: http://www.domain1.nl" . $url_suffix . '/' . $url ); 
} 

No I''m developing for Wordpress. What should I do? Make a redirect in the header.php or make a multisite?

share|improve this question

closed as not constructive by toscho Jul 30 '12 at 19:39

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

In my opinion Multisite in will be easier to manage.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.