• I have wordfence installed. Now i go to the wordfence web site, create an account, and am attempting to connect my site to the account created there, but it’s telling me i can’t because of redirects.

    i do have a bunch of rewrite rules. is there a rule i should put at the top to allow wordfence to connect with my site?

    • This topic was modified 4 years, 11 months ago by davecotter.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @davecotter,

    Can you post your rewrite rules here? I think the issue might be that your website is redirecting bot-like traffic, and so Wordfence Central is unable to link to your website.

    Dave

    Thread Starter davecotter

    (@davecotter)

    # If we are using https or we are not on the karaoke.kjams.com subdomain redirect.
    RewriteCond %{SERVER_PORT} 80 [NC,OR]
    RewriteCond %{HTTP_HOST} !^karaoke\..* [NC]
    RewriteRule ^(.*)$ https://karaoke.kjams.com%{REQUEST_URI} [L,R=301]

    ## MediaWiki short url rules ##
    RewriteRule ^wiki/(.*)$ /w/index.php?title=$1 [PT,L,QSA]
    RewriteRule ^wiki/*$ /w/index.php [L,QSA]

    # WordPress
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # WordPress

    ## Add php include path
    php_value include_path “.:/opt/local/lib/php/pear”

    # 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

    Thread Starter davecotter

    (@davecotter)

    it’s ironic that the REASON i want to connect my site into the wordfence.com console is so i can upgrade it to premium, so i can get premium tech support, but i need premium tech support in order to connect my site

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘unable to resolve domain redirects’ is closed to new replies.