Make WordPress Core

Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#26820 closed feature request (invalid)

Multisites subdomain

Reported by: wc-master's profile WC Master Owned by:
Milestone: Priority: normal
Severity: normal Version: 3.8
Component: Multisite Keywords:
Focuses: Cc:

Description (last modified by SergeyBiryukov)

I have WordPress multisite.I want this site as WordPress.com .I want free website creating account with subdomain for public and registered user.But my current site does not support any subdomain.
This is my config.php
=====================

define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', true);
define('DOMAIN_CURRENT_SITE', 'www.fearth.us');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1); 

and this is htaccess
====================

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

# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

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

Now what can i do?

Change History (2)

#1 @knutsp
12 years ago

  • Component changed from General to Multisite
  • Resolution set to invalid
  • Severity changed from major to normal
  • Status changed from new to closed

Now what can i do?

Trac is not a support forum, please use ​https://wordpress.org/support/ for support questions.

#2 @SergeyBiryukov
12 years ago

  • Description modified (diff)
  • Milestone Awaiting Review deleted
Note: See TracTickets for help on using tickets.