• elsnare

    (@elsnare)


    Hello guys

    I’m having a strange issue with WP – the site is randomy redirecting itself to another site keeping the URL of the original.

    So when i visit xxx.aa it pulls up yyy.bb but with xxx.aa in the adress bar.
    This IS NOT A HACK since both sites were designed by me, they are both running on the clients server.

    This happens at random, and randomly fixes itself after some time.

    There are no redirect plugins running on the site.
    No cache etc.
    The URLs are correctyly defined in wp-config
    Htacess is looking ok

    I’m not hoping for a clear anwser – maybe you guys have some ideas.

Viewing 1 replies (of 1 total)
  • Hi
    That is indeed pretty odd.
    Have you tried replacing the current .htaccess file with the WordPress default:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    That would eliminate any htaccess redirects.

    have you copied any parts of the .bb site to the .aa site by which i mean files and database entries?

Viewing 1 replies (of 1 total)
  • The topic ‘Strange random domain redirects’ is closed to new replies.