#26820 closed feature request (invalid)
Multisites subdomain
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 3.8 |
| Component: | Multisite | Keywords: | |
| Focuses: | Cc: |
Description (last modified by )
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)
Note: See
TracTickets for help on using
tickets.
Trac is not a support forum, please use https://wordpress.org/support/ for support questions.