Multisite wrong URLs for the new blogs
-
Hello!
I installed WP 3.1 and enabled it for multisite. I chose sub-directory and not sub-domain. The problem is that when a member creates a new blog it creates it with a wrong URL address all together: it does it with this format:
https://example.comexample_comnewblog
when it should be:
example_com is the name of the database! In network admin >> settings >> network setup it teels me to add:
wp-config
define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); $base = 'eebees_com'; <--- THIS IS WRONG SHOULD BE / define( 'DOMAIN_CURRENT_SITE', 'eebees.com' ); define( 'PATH_CURRENT_SITE', 'eebees_com' ); <--- THIS IS WRONG SHOULD BE / define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
.htaccess
RewriteEngine On RewriteBase eebees_com <--- THIS ALSO WRONG SHOULD BE / 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]
SUMMARY: I don′t know why wordpress is taking this info, I even put it write in wp-config and .htaccess and it still picks up eebees_com instead of /.
Can you help me please?
Thank you!
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Multisite wrong URLs for the new blogs’ is closed to new replies.