MyBB Community Forums

Full Version: redirect www to https?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Every time I search on tab my forum site it will direct to http://www.cryptoforumtalk.com but if I click to the header it will direct to https://cryptoforumtalk.com/

I was wondering if I could possibly redirect my forum from http://www.cryptoforumtalk.com/ to https://cryptoforumtalk.com/

[Image: jBGRVcN.png]


I would like to also to know how to get the http://www.cryptoforumtalk.com/ on search engine?

[Image: X9mWyrM.png]


Appreciate your help. 
https://docs.mybb.com/1.8/administration...ity/https/

Your site is in Google search results. Type this into Google Search and press enter:

site:cryptoforumtalk.com
Adding to answer of Ashley1
If you just need to do a redirect from www to non-www, than this is good :-
1. Redirect www to non-www from htacces
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

2. Set non-www as preferred website in Google Webmasters(This will set google to prefer non-www)
3. If you use cloudflare, you can use pagerules.

Simple Smile