• Hi, I suspect some problems are happening on my site and search crawl because of being indexed as https.

    How can I totally stop being indexed as https and just be indexed as http?

    Thanks,
    JM

Viewing 1 replies (of 1 total)
  • InterServer

    (@interservernet-web-hosting)

    You can set up redirection to http using .htaccess rules. You can add the following lines in .htaccess file for https to http redirection.

    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteCond %{SERVER_PORT} ^443$ [OR]
    RewriteCond %{HTTPS} =on
    RewriteRule ^(.*)$ https://yourdomain.com/$1 [R=301,L]

Viewing 1 replies (of 1 total)
  • The topic ‘How to disable https and just use http?’ is closed to new replies.