• Hi,

    I have a problem, with the same old Error 310, on a fresh new wordpress installation with multisite.

    my .htaccess looks like:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    
    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]
    
    </IfModule>
    # END WordPress

    and my wp_config.php looks like:

    /* Multisite */
    define('WP_ALLOW_MULTISITE', true);
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', 'bsgov.ro');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    The problem is that on my MacOS on any kind of browser (Safari, Chrome, Mozilla) I can access the wp-admin and also from my iPhone iOS Safari, but when I try from a Windows I get the 310 error ?!

    I’ve tried all the “fixes” found in wp support forum and also from other sites. None changed the situation ?!

    Did it happen to anyone ?! Can the redirection be fixed?

    Best regards!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter Costin

    (@polifem)

    Actually the error is “Error 404 – Page Not Found”.

    Funny thing (killer for me) is that I’ve deleted the Cache from my iOS Cloud, and now it seems that I also cannot access the WP-ADMIN section from any apple device 😀

    Any solution on fixing the 404 plz.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Actually the error is “Error 404 – Page Not Found”

    What’s it look like? Is it styled like WP or a generic server error?

    Your .htaccess also has a typo. Try this:

    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 Costin

    (@polifem)

    Hei Mika, thanks for the correction. on the windows os it’s still the “Error 404 – Page Not Found” the theme version of the 404 … . I tried another mac os … and it also works …

    I will have to renounce on the multisite … 🙁 will create 3 different websites

    Thread Starter Costin

    (@polifem)

    X( … cleaned the databases. installed new wp. 4 different wp installations with correct .htaccess rules & standard wp-config files … and I can acces the wp-admin page from mac, windows user cannot acces the wp-admin. 404 error (theme error) … the weird thing is that some weeks ago, it was accessible … 🙁

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    What browser are you using on Windows?

    can acces the wp-admin page from mac, windows user cannot acces the wp-admin

    That sounds like you have some weird code to block Windows OR you have a bad cache. Have you tested with a different browser?

    Thread Starter Costin

    (@polifem)

    On windows i’ve tried from chrome, mozilla, safari and ie. I think is something from the shared hosting. Tried the same installation on different server and it works?!?

    Totally weird!!!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    I think you’re right. Can you ask your webhost?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Same old Error 310 (net::ERR_TOO_MANY_REDIRECTS)’ is closed to new replies.