• hi,
    I have installed WordPress multisite on the local server with subdirectories. when I am trying to access the new site I am getting the file not found the error. I am also getting an error in the wp-admin panel also but the main site is working properly. Anything can be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s because of rules added by wordpress while installing multisite in .htaccess file. change to below mentioned rules it will work I guess 🙂

    # 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]

    Thread Starter buddaseshu

    (@buddaseshu)

    Thank you, but I don’t have .htaccess file on my local server. I am using ubuntu 14.04 with Nginx configuration. Can you pLease help me in this regard?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wordpress multisite is not working properly’ is closed to new replies.