• Hello,

    I just installed WP and added the Networks feature because I want to manage client blogs.. I have used WP MU before and I know that you can do.. subdomain.sitename.com/wp-admin and go into the blog and apply themes etc..

    What happens now is i installed WP on my domain so example:

    mydomain.com/wp/blog/wp-admin but it takes me to this page..

    Not Found
    Apologies, but the page you requested could not be found. Perhaps searching will help.

    Im pretty sure theres something not setup correctly.. I doubled checked the instructions and it seems like I did it right..

    Any suggestions?

    Thanks in advance..

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    If you installed WordPress in public_html/wp/ then your URL is mydomain.com/wp/wp-admin

    Your SUB BLOGS will be mydomain.com/wp/sub-blog/wp-admin

    Thread Starter spassociate

    (@spassociate)

    Exactly.. wp/subblog/wp-admin just redirects me to a Page Not Found

    http://www.searchpowerassociates.com/wp/test/wp-admin

    try

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Yeah, but looking at http://searchpowerassociates.com/wp/test/ your CSS is jacked which MEANS you didn’t update your .htaccess correctly or it’s not being read 🙂

    What’s in your public_html/wp/.htaccess file?

    Thread Starter spassociate

    (@spassociate)

    RewriteEngine On
    RewriteBase /wp/
    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).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Ask your host if allowoverride is set to ‘All’ and what options are set on the server, because it’s not reading your .htaccess

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Backend blog editing issue cannot access WP-Admin’ is closed to new replies.