Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On my server I've got a single WordPress installation for my own company website. Besides that, I would like to create a demo area for clients.

At the moment I've got the following setup and folders:

www.domain.com - Single WordPress installation for company website

www.domain.com/demo/ - WordPress Multisite

At the moment all the clients websites have the following domain structure: www.domain.com/demo/client1, www.domain.com/demo/client2, etc.

Instead of those long urls, I would like a subdomain: demo.domain.com/client1, demo.domain.com/client2, etc.

WordPress Multisite standard generates the following .htaccess:

RewriteEngine On
RewriteBase /demo/
RewriteRule ^index\.php$ - [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]

From other topics at stackoverflow I've found the following:

RewriteRule ^demo/(.*) demo.domain.com/$2/

But unfortunately this doesn't work. Anybody who can help me? Thanks in advance!

share|improve this question
FWIW, you're likely to run into more issues with multisite being in a subdirectory itself. I've seen Donncha (the MU caretaker) say this isn't supported. – user1337 May 29 '12 at 16:00

2 Answers

Keep the multisite .htaccess where it is and put this in the .htaccess in the root of your web directory:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^demo
RewriteRule ^(.*)$ http://www.domain.com/demo/$1
share|improve this answer
Thanks Ansari, it works perfect! Thank you very much. – Jason Lucas May 29 '12 at 9:55

Additional question: I've changed the setup of the subdomain and subdirectories a little:

demo.domain.com/clients/clientname

But WordPress Multisite requires a sort of base site: demo.domain.com/clients This site is empty and has no purpose.

So I would like to redirect http://demo.domain.com/clients to http://demo.domain.com

I've got the following code in my .htaccess in the subdomain:

Redirect 301 /clients http://demo.domain.com

But with this code, suddenly the subdirecties don't work (http://demo.domain.com/clients/clientname). I get a 404...

Anybody who knows if this is possible and what I'm doing wrong?

share|improve this answer
RewriteCond %{HTTP_HOST} ^demo RewriteRule ^clients$ demo.domain.com [L,R] – Ansari May 29 '12 at 16:25
Unfortunately it doesn't work... When I enter demo.domain.com/clients, it doesn't redirect to demo.domain.com... I've copied and pasted your exact htaccess code. – Jason Lucas Jun 1 '12 at 21:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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