Found it 🙂 the problem was saving the htaccess file as htaccess.txt instead of .htaccess. Everything is working now!
Thanks for your help…
checked that and mod_rewrite is enabled…will be glad to hear other suggestions?
Hi,
I have the same problem. I used the htaccess code that the backend menu gave me but I still cannot access the sites I created as subdirectories. when I try to login the new sites I get “page not found”. What could be the problem?
Here is my .htaccess:
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]