WP 3.0 multisite subdomains
-
Hi all,
I’m having a bit of a problems with my wordpress 3.0 multi site install with subdomain sites.
I’ve got my wildcard subdomain set up. I’m pretty sure it’s correct because it does go to a page linking to the cgi-bin folder that shows up in FTP rather than the Server not found page it would if it weren’t set up.
I’ve created a site called “blog”, which should be available at https://blog.westernma.biz
As per the network setup instructions I’ve got this added to my wp-config file:
define( 'MULTISITE', true );<br /> define( 'VHOST', 'yes' );<br /> $base = '/';<br /> define( 'DOMAIN_CURRENT_SITE', 'westernma.biz' );<br /> define( 'PATH_CURRENT_SITE', '/' );<br /> define( 'SITE_ID_CURRENT_SITE', 1 );<br /> define( 'BLOG_ID_CURRENT_SITE', 1 );
I created and .htaccess file containing this:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]
Any thoughts what might be going wrong?
Thanks!
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- The topic ‘WP 3.0 multisite subdomains’ is closed to new replies.