Multisite with simple sub-directories
-
Hello All. Have my installation up and running and now wish to re-configure to have simple sub-sites listed in their own directories.
i.e. weblog.domain.com/blog1
weblog.domain.com/blog2etc.
Ideally I’d like to have different headers and art with the same theme layout.
When I follow the instructions to enable multisite, I get all the way to create new site. It has:
Site Address weblog.domain.com/wordpress/
then the box to add my own.
I have tried every permutation I can think of here yet I always get the error:
Missing or invalid site address.
HELP!
Once I get past this I can begin the real work.
Later on, as the blogs become more popular I will likely switch to multidomain: blog1.domain.com, blog2.domain.com. But not just yet.
My wp-config.php is:
define(‘WP_ALLOW_MULTISITE’, true);define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/wordpress/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘weblog.DOMAIN.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/wordpress/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );# BEGIN WordPress
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
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]
# END WordPressI am at a loss. AND I am sure this is a simple fix.
Thanks,
Rick
define( ‘BLOG_ID_CURRENT_SITE’, 1 );and my .htaccess is:
The topic ‘Multisite with simple sub-directories’ is closed to new replies.