Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Ivan Fuentes Hagar

    (@ivfuentes)

    So in the meantime, me theory was maybe the wildcard domain was messing with some configs in there… maybe having some rogue “www subdomain” request redirected to wordpress multisite…

    I removed the wildcard subdomain entry, and I’m still having the same issue, so at least we have that one crossed out. I still left it without the wildcard entry… I think I’d rather manually add the subdomain for each new blog that gets created.

    But the question remains! What can it be? .htaccess? This is what I have in it so far

    =========================================

    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)$ $1 [L]
    RewriteRule . index.php [L]

    =========================================

    Thread Starter Ivan Fuentes Hagar

    (@ivfuentes)

    Solved! Apparently, I didn’t flush cookies after one of the last tweaks I did.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘"Please log in again." on subdomain multisite.’ is closed to new replies.