Could you please post the contents of your “.htaccess file?
—-
http://codex.wordpress.org/htaccess
AddDefaultCharset utf-8
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
Here, i modified it when i was creating “Multisite”
When you said you created a subfolder, did you create a subsite through your multisite install. Or, did you actually create a subfolder in your directory?
I created the subfolder through multisite system and then i created the folder in my directory.
When you create a subsite via your WordPress multisite install, you don’t need to create a folder manually on your server. Try deleting the folder, (if nothing is in it. If there is, then download it to your computer.)
That folder is empty. It strucks me, i thougth smth need to be there.
Deleting not helping(
‘http://new.khnu.km.ua/’ doesn;t load at all.
That’s the MAIN site?
it’s under maintance now. I’ll fix all in few hours. Sry for inconvinience.
Okay, what are your multisite rules in your wp-config?
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'new.khnu.km.ua');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
Where’s define( 'WP_ALLOW_MULTISITE', true ); ?
It’s excisting, up above.
define('WP_ALLOW_MULTISITE', true);
/* That's all, stop editing! Happy blogging. */
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'new.khnu.km.ua');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);