• I am working on a site where every page is https except that now we need one page to be http so it will work better with our email company’s form script.

    The full htaccess file is here:
    https://www.webmasterworld.com/apache/3002758.htm#msg3005550 but here are the highlites:
    `RewriteCond %{HTTPS} off
    RewriteCond %{REQUEST_URI} !/pick-an-ebook/
    RewriteRule (.*) https://example.net/$1 [R=301,L]
    RewriteCond %{HTTPS} on
    RewriteRule ^pick-an-ebook/$ https://example.net/pick-an-ebook/ [R=301,L]
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

    #—– START DAP —–
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} (.*)/wp-content/uploads/(.*)
    RewriteCond %{REQUEST_FILENAME} !(.*)(\.php|\.css|\.js|\.jpg|\.gif|\.png|\.txt|\.ico|\.jpeg)$
    RewriteRule (.*) /dap/client/website/dapclient.php?dapref=%{REQUEST_URI}&plug=wp&%{QUERY_STRING} [L]
    #—– END DAP —–

    </IfModule>

    # END WordPress’

    No matter what I try the exempted page ends up at the site’s homepage. I have tried adding this redirect with both your plugin and Yoast’s. Any ideas?

    https://www.ads-software.com/plugins/safe-redirect-manager/

  • The topic ‘Make one page of https site http’ is closed to new replies.