ver: 2.8.6
Ive created multiple blogs using the subdirectory structure (ie localhost.localdomain/blog1, localhost.localdomain/blog2 etc). These show in the admin control panel, accessible at the root blog, yet when i navigate/follow the link to the sub-blogs they show 404 errors. (ex. http://localhost.localdomain/testing1/)
( VHOST is 'no' )
Also when as a user tried to login , i get same 404 errror at : http://localhost.localdomain/testing1/wp-admin/?c=1
Admin login is fine & can create a main blog .
htaccess has Rewrite base "BASE" to "/" ,
LoadModule rewrite_module modules/mod_rewrite.so is present in httpd file
htaccess file :
[
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
]
thanks in advance.