I searched the forum but can't find a solution for this one.
I have multiple running wordpress installations, at http://www.fortherestless.com/forms, they are forms/diary, forms/newz, forms/media and so on.
I am now trying to set up a multi site, but decided to do this in a
different folder just to not screw things up.
I now have http://www.fortherestless.com/login, with network enabled and several subsites; fortherestless.com/login/diary, fortherestless.com/login/newz, fortherestless.com/login/media and so on
so I wish to login in http://www.fortherestless.com/login and then have acces to all the sites.
So when I try to acces any of the installed subsites, located in their subdirectories I get a 404, the dashboard is unavailble.
I'm on a windows server and .htaccess is not accepted, iirf.ini however is.
this is what is in it at the moment
# BEGIN WordPress
RewriteEngine On
RewriteBase /
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 WordPress
any help would be admired...