Parent Domain Redirecting Everything to Front Page (Multisite)
-
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]
- The topic ‘Parent Domain Redirecting Everything to Front Page (Multisite)’ is closed to new replies.