• Hello,

    I have a subdomain multisite (i-am-one.net) for which the main/parent site has always been a single page that links to the subdomains. However, I now have added an additional page (i-am-one.net/test/) for the first time. Interestingly, I’ve discovered that I can’t pull it up in a browser as it just redirects back to the front page (regardless of being logged in or not). This seems to be the case for 404s as well (i.e., i-am-one.net/random/).

    I’ve done some basic troubleshooting, disabled/bypassed my CDN, disabled all plugins, and simplified the .htaccess file to the basics (see below). However, the issue seems to persist and I can’t think of what might be causing it.

    Is this expected behavior? If not, could anyone offer any theories as to what might be the source of the issue?

    Thank you,
    JP

    ===============
    .htaccess:

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ wp/$1 [L]
    RewriteRule . index.php [L]

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter JP

    (@jpress)

    Note that removing/disabling the “NOBLOGREDIRECT” directive (as explained here) results in the /test/ page displaying a 404. This may be a clue although still doesn’t really reveal the cause of the issue. Interestingly, I also discovered that the issue does not occur with “posts” (in the same way that it does not occur with .html files).

Viewing 1 replies (of 1 total)
  • The topic ‘Parent Domain Redirecting Everything to Front Page (Multisite)’ is closed to new replies.