View Full Version : Http to Https redirect
tanzeelniazi
12-07-2014, 01:17 PM
3 Days ago i change http to https after i see when enter the name or check any url from google and the open it i see he use http only and the after i click the logo the i see https its mean links not redirecting http to https opening in first time via search from google and other search engines.
how to redirect
ozzy47
12-07-2014, 01:24 PM
You can try something like this in your .htaccess.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourwebsite\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.yourwebsite\.com$
RewriteRule ^(.*)$ "https\:\/\/yourwebsite\.com\/$1" [R=301,L]Replacing yourwebsite\.com with your site name.
webmastersun
12-07-2014, 01:53 PM
Https will not improve more your SEO rankings
BTW, Thanks ozzy47 for the codes
ozzy47
12-07-2014, 02:40 PM
The OP said nothing about rankings. :confused:
Hopefully they code does work, been awhile since I work on a site that needed it. :)
tanzeelniazi
12-07-2014, 03:09 PM
https grow the ranking
http://www.hallaminternet.com/2014/google-https-ssl-ranking-factor/
Thanks Ozzy let me try can you tell me 1 thing where i put this code in htaccess
in start or the end
ozzy47
12-07-2014, 03:15 PM
Try in the beginning first.
tanzeelniazi
12-07-2014, 04:06 PM
Oops code is not working :(
ozzy47
12-07-2014, 04:09 PM
Hmmm, try this then.
RewriteCond %{HTTPS}=on
RewriteRule ^(.*)$ https://www.yourwebsite.com/$1 [R=301,L]
tanzeelniazi
12-07-2014, 04:28 PM
Google showing my new links with Https and old is not.
when i check my old link in google and then i open it still showing Http. after i click in the forum of any link he is showing https
why redirecting not working :(
ozzy47
12-07-2014, 04:34 PM
Ok one more time.
# Ensure we are using HTTPS version of the site.
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Nothing to change in this one, use it as is.
tanzeelniazi
12-07-2014, 04:52 PM
Still not working :(
ozzy47
12-07-2014, 06:48 PM
Hmmm.
# Always Forced http to https
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
CAG CheechDogg
12-08-2014, 05:43 AM
I am going to assume that you already have an SSL certificate on your website .... so add this to your htaccess
#RewriteEngine On
# Always use https for secure connections
# Replace 'www.example.com' with your domain name
# (as it appears on your SSL certificate)
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule ^(.*)$ "https\:\/\/www\.example\.com\/$1" [R=301,L]
tanzeelniazi
12-08-2014, 09:22 AM
I dont have SSL certificate i use SSL from cloudflare and cloudflare gives free ssl
ozzy47
12-08-2014, 09:29 AM
Well you did not say this was cloudfare, :(
I would read this, https://support.cloudflare.com/hc/en-us/articles/200168306-Is-there-a-tutorial-for-Page-Rules-
And, https://support.cloudflare.com/hc/en-us/articles/200170566-My-SSL-isn-t-working-Why-not-
If those make no sense to you, I suggest asking cloudfare how to do it, or to do it for you.
CAG CheechDogg
12-08-2014, 09:31 AM
Well you did not say this was cloudfare, :(
I would read this, https://support.cloudflare.com/hc/en-us/articles/200168306-Is-there-a-tutorial-for-Page-Rules-
And, https://support.cloudflare.com/hc/en-us/articles/200170566-My-SSL-isn-t-working-Why-not-
If those make no sense to you, I suggest asking cloudfare how to do it, or to do it for you.
That's why he needs "RewriteCond %{SERVER_PORT} 80" in his code my Man .... the code I provided with him will work regardless of whether he's on cloudfare or not ... I used to have cloudfare and I used that exact same code ...
Cloudflare has a nice "Page Rules" page where you can create forwarding rules, not required to create a .htaccess file if you do it on that page.
ozzy47
12-08-2014, 09:35 AM
Ahh, see that is the same code I had in the first post, other than port 80. If I had known, I could have searched different paramaters for the correct code. :)
See we learn something everyday. :)
CAG CheechDogg
12-08-2014, 09:35 AM
Dave, but those same rules actually get added to your htaccess file if I remember correctly ...
tanzeelniazi
12-08-2014, 09:45 AM
I use this Code
#RewriteEngine On
# Always use https for secure connections
# Replace 'www.example.com' with your domain name
# (as it appears on your SSL certificate)
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule ^(.*)$ "https\:\/\/www\.example\.com\/$1" [R=301,L]
Not working in my domain
when i check my site keyword in google and then i click the link or open the still showing like this
http://www.XXXXXXXXX.com/forum.php :(
why not showing direct via
https://www.XXXXXXXX.com/forum.php
--------------- Added 1418039419 at 1418039419 ---------------
My htaccess file
#RewriteEngine On
# Always use https for secure connections
# Replace 'www.XxXxXxXxXx.com' with your domain name
# (as it appears on your SSL certificate)
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.XXXxXXXX.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^xxXXxXXxX.com$
RewriteRule ^(.*)$ "https\:\/\/www\.XXXxxXXXxx\.com\/$1" [R=301,L]
# Ultimate htaccess Blacklist from Perishable Press
# Deny domain access to spammers and other scumbags
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_USER_AGENT} almaden [OR]
RewriteCond %{HTTP_USER_AGENT} ^Apache Synapse ESB Spider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Apache Synapse [OR]
RewriteCond %{HTTP_USER_AGENT} ^Anarchie [OR]
RewriteCond %{HTTP_USER_AGENT} ^ASPSeek [OR]
RewriteCond %{HTTP_USER_AGENT} ^attach [OR]
RewriteCond %{HTTP_USER_AGENT} ^autoemailspider [OR]
RewriteCond %{HTTP_USER_AGENT} ^BackWeb [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bandit [OR]
RewriteCond %{HTTP_USER_AGENT} ^BatchFTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bot\ mailto:craftbot@yahoo.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^Buddy [OR]
RewriteCond %{HTTP_USER_AGENT} ^bumblebee [OR]
RewriteCond %{HTTP_USER_AGENT} ^CherryPicker [OR]
RewriteCond %{HTTP_USER_AGENT} ^ChinaClaw [OR]
RewriteCond %{HTTP_USER_AGENT} ^CICC [OR]
RewriteCond %{HTTP_USER_AGENT} ^Collector [OR]
RewriteCond %{HTTP_USER_AGENT} ^Copier [OR]
RewriteCond %{HTTP_USER_AGENT} ^Crescent [OR]
RewriteCond %{HTTP_USER_AGENT} ^Custo [OR]
RewriteCond %{HTTP_USER_AGENT} ^DA [OR]
RewriteCond %{HTTP_USER_AGENT} ^DIIbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^DISCo [OR]
RewriteCond %{HTTP_USER_AGENT} ^DISCo\ Pump [OR]
RewriteCond %{HTTP_USER_AGENT} ^Download\ Demon [OR]
RewriteCond %{HTTP_USER_AGENT} ^Download\ Wonder [OR]
RewriteCond %{HTTP_USER_AGENT} ^Downloader [OR]
RewriteCond %{HTTP_USER_AGENT} ^Drip [OR]
RewriteCond %{HTTP_USER_AGENT} ^DSurf15a [OR]
RewriteCond %{HTTP_USER_AGENT} ^eCatch [OR]
RewriteCond %{HTTP_USER_AGENT} ^EasyDL/2.99 [OR]
RewriteCond %{HTTP_USER_AGENT} ^EirGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} email [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailCollector [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^Express\ WebPictures [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^EyeNetIE [OR]
RewriteCond %{HTTP_USER_AGENT} ^FileHound [OR]
RewriteCond %{HTTP_USER_AGENT} ^FlashGet [OR]
RewriteCond %{HTTP_USER_AGENT} FrontPage [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^GetRight [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetSmart [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetWeb! [OR]
RewriteCond %{HTTP_USER_AGENT} ^gigabaz [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go\!Zilla [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go!Zilla [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go-Ahead-Got-It [OR]
RewriteCond %{HTTP_USER_AGENT} ^gotit [OR]
RewriteCond %{HTTP_USER_AGENT} ^Grabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^GrabNet [OR]
RewriteCond %{HTTP_USER_AGENT} ^Grafula [OR]
RewriteCond %{HTTP_USER_AGENT} ^grub-client [OR]
RewriteCond %{HTTP_USER_AGENT} ^HMView [OR]
RewriteCond %{HTTP_USER_AGENT} ^HTTrack [OR]
RewriteCond %{HTTP_USER_AGENT} ^httpdown [OR]
RewriteCond %{HTTP_USER_AGENT} .*httrack.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^ia_archiver [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Stripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} ^Indy*Library [OR]
RewriteCond %{HTTP_USER_AGENT} Indy\ Library [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^InterGET [OR]
RewriteCond %{HTTP_USER_AGENT} ^InternetLinkagent [OR]
RewriteCond %{HTTP_USER_AGENT} ^Internet\ Ninja [OR]
RewriteCond %{HTTP_USER_AGENT} ^InternetSeer.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^Iria [OR]
RewriteCond %{HTTP_USER_AGENT} ^JBH*agent [OR]
RewriteCond %{HTTP_USER_AGENT} ^JetCar [OR]
RewriteCond %{HTTP_USER_AGENT} ^JOC\ Web\ Spider [OR]
RewriteCond %{HTTP_USER_AGENT} ^JustView [OR]
RewriteCond %{HTTP_USER_AGENT} ^larbin [OR]
RewriteCond %{HTTP_USER_AGENT} ^LeechFTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^LexiBot [OR]
RewriteCond %{HTTP_USER_AGENT} ^lftp [OR]
RewriteCond %{HTTP_USER_AGENT} ^Link*Sleuth [OR]
RewriteCond %{HTTP_USER_AGENT} ^likse [OR]
RewriteCond %{HTTP_USER_AGENT} ^Link [OR]
RewriteCond %{HTTP_USER_AGENT} ^LinkWalker [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mag-Net [OR]
RewriteCond %{HTTP_USER_AGENT} ^Magnet [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mass\ Downloader [OR]
RewriteCond %{HTTP_USER_AGENT} ^Memo [OR]
RewriteCond %{HTTP_USER_AGENT} ^Microsoft.URL [OR]
RewriteCond %{HTTP_USER_AGENT} ^MIDown\ tool [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mirror [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mister\ PiX [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*Indy [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*NEWT [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla*MSIECrawler [OR]
RewriteCond %{HTTP_USER_AGENT} ^MS\ FrontPage* [OR]
RewriteCond %{HTTP_USER_AGENT} ^MSFrontPage [OR]
RewriteCond %{HTTP_USER_AGENT} ^MSIECrawler [OR]
RewriteCond %{HTTP_USER_AGENT} ^MSProxy [OR]
RewriteCond %{HTTP_USER_AGENT} ^Navroad [OR]
RewriteCond %{HTTP_USER_AGENT} ^NearSite [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetAnts [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetMechanic [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Net\ Vampire [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^NICErsPRO [OR]
RewriteCond %{HTTP_USER_AGENT} ^Ninja [OR]
RewriteCond %{HTTP_USER_AGENT} ^Octopus [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Explorer [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Navigator [OR]
RewriteCond %{HTTP_USER_AGENT} ^Openfind [OR]
RewriteCond %{HTTP_USER_AGENT} ^PageGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^Papa\ Foto [OR]
RewriteCond %{HTTP_USER_AGENT} ^pavuk [OR]
RewriteCond %{HTTP_USER_AGENT} ^pcBrowser [OR]
RewriteCond %{HTTP_USER_AGENT} ^Ping [OR]
RewriteCond %{HTTP_USER_AGENT} ^PingALink [OR]
RewriteCond %{HTTP_USER_AGENT} ^Pockey [OR]
RewriteCond %{HTTP_USER_AGENT} ^psbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^Pump [OR]
RewriteCond %{HTTP_USER_AGENT} ^QRVA [OR]
RewriteCond %{HTTP_USER_AGENT} ^RealDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^Reaper [OR]
RewriteCond %{HTTP_USER_AGENT} ^Recorder [OR]
RewriteCond %{HTTP_USER_AGENT} ^ReGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^Scooter [OR]
RewriteCond %{HTTP_USER_AGENT} ^Seeker [OR]
RewriteCond %{HTTP_USER_AGENT} ^Siphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^sitecheck.internetseer.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^SiteSnagger [OR]
RewriteCond %{HTTP_USER_AGENT} ^SlySearch [OR]
RewriteCond %{HTTP_USER_AGENT} ^SmartDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^Snake [OR]
RewriteCond %{HTTP_USER_AGENT} ^SpaceBison [OR]
RewriteCond %{HTTP_USER_AGENT} ^sproose [OR]
RewriteCond %{HTTP_USER_AGENT} ^Stripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperBot [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperHTTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Surfbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^Szukacz [OR]
RewriteCond %{HTTP_USER_AGENT} ^tAkeOut [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport\ Pro [OR]
RewriteCond %{HTTP_USER_AGENT} ^URLSpiderPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^Vacuum [OR]
RewriteCond %{HTTP_USER_AGENT} ^VoidEYE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Image\ Collector [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebAuto [OR]
RewriteCond %{HTTP_USER_AGENT} ^[Ww]eb[Bb]andit [OR]
RewriteCond %{HTTP_USER_AGENT} ^webcollage [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebCopier [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Downloader [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebEMailExtrac.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebFetch [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebGo\ IS [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebHook [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebLeacher [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebMiner [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebMirror [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebReaper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebSauger [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ eXtractor [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ Quester [OR]
RewriteCond %{HTTP_USER_AGENT} ^Webster [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper [OR]
RewriteCond %{HTTP_USER_AGENT} WebWhacker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^Whacker [OR]
RewriteCond %{HTTP_USER_AGENT} ^Widow [OR]
RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [OR]
RewriteCond %{HTTP_USER_AGENT} ^x-Tractor [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xenu [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus
RewriteRule ^.* - [F,L]
CAG CheechDogg
12-08-2014, 09:54 AM
What is your site's link my Man ... do you mind posting it?
tanzeelniazi
12-08-2014, 10:11 AM
What is your site's link my Man ... do you mind posting it?
Dear sir,
In my site HTTPS is working and my all links showing https and working fine. But
When members or people search related in my forum with google so many links showing on http is google after someone open the link via google he is showing http not https. after people open the link he see http and the click the logo then showing https.
i want this
when people search my links via google after he redirect auto https not http
.Thats it
My have have a https and working fine but searching in google thats a problem
Sorry sir i cant share my link its Private sorry
ozzy47
12-08-2014, 10:13 AM
Well I would suggest you contact cloudfare to help you with your issue, as you can not provide a link for people to test things out.
Also since everything suggested does not work, cloudfare needs to solve the issue for you. :)
CAG CheechDogg
12-08-2014, 10:17 AM
And keep in mind... if you just added the ssl to your site, the links after someone does a search on google are going to take time to update ... We have tried everything for you and this is all we can do now ...
ozzy47
12-08-2014, 10:20 AM
True, eventually they should update in google, but it seems the redirect is not working at all, so there might be a configuration issue on cloudfares end.
So it is best to get support from them for their service. :)
tanzeelniazi
12-08-2014, 10:42 AM
Ok I ll try to contact Cloudflare
Thank you OZZY and CAG :)
Thank you !
ozzy47
12-08-2014, 10:57 AM
Not a problem. Hopefully they can sort it for you. :)
RichieBoy67
12-08-2014, 02:59 PM
Https will not improve more your SEO rankings
BTW, Thanks ozzy47 for the codes
Actually Google has added this to their algo but I think the rank improvements are minimal at best.
Eventually though they will be encouraging all sites to switch over so it is not really a bad move to make the change in my opinion.
ozzy47
12-08-2014, 10:40 PM
Yeah it looks like it is around 1% of the global queries.
http://googlewebmastercentral.blogspot.com/2014/08/https-as-ranking-signal.html
AndrewSimm
12-09-2014, 03:02 AM
One thing to consider is images linked from other sites are going to cause mix content warnings for your users on some browsers. Until an image proxy is released for vbulletin I wouldn't recommend using SSL unless you have specific pages you want to use it on that users can't use BB code to attach images.
CAG CheechDogg
12-09-2014, 03:32 AM
One thing to consider is images linked from other sites are going to cause mix content warnings for your users on some browsers. Until an image proxy is released for vbulletin I wouldn't recommend using SSL unless you have specific pages you want to use it on that users can't use BB code to attach images.
Yes, that is called mixed display content or mixed passive content and it's still allowed to load because so many sites still have this kind of content so google is not really "taxing" us for this ...
I have an ssl on my site and forums and http images load up just fine so using SSL is fine to use even if you have http images from other sites ...
AndrewSimm
12-09-2014, 05:41 AM
Yes, that is called mixed display content or mixed passive content and it's still allowed to load because so many sites still have this kind of content so google is not really "taxing" us for this ...
I have an ssl on my site and forums and http images load up just fine so using SSL is fine to use even if you have http images from other sites ...
Well it really depends. I have users that access my site from work and are forced to use IE. The popup messages is an concern to them so it becomes my problem. An image proxy is the only solution.
CAG CheechDogg
12-09-2014, 06:13 AM
Oh I hear you on that ... but if you explain to your members why those popups are triggered then they will understand... believe me if my forum's members are concerned about something like this I make sure I explain to them in detail what "mixed content" is ..why google and chrome feel the need to warn us about it and the risks of allowing something to load up if its not https hosted ...
So far I haven't had any problems what soever ... The responsibility of owning and operating a forum and website is knowing how to communicate with you members and explaining to them the risks of using not just your site and forums but any out there ... and what to do to protect themselves from these threats ...
The fact that I take the time to explains stuff like this to them is why my site/forums has been so successful and why I decided to put my site/forums behind https ....
I launched my website/forums in 2008 and it has been behind https since then without problems ...
So yes, "our" member's concerns are also our concerns and problems ... totally agree !!!
AndrewSimm
12-09-2014, 07:28 PM
The makeup of users that visit your site are likely a bit different than mine. Most of my users are sports nuts and the warning scares them. They aren't as tech savy as gamers and tend to me older. While I can explain it to them it doesn't look good with new users. When I can get a good image proxy I will put my forum behind SSL and enable SPDY.
RichieBoy67
12-09-2014, 07:34 PM
You can have an ssl certificate on your site to avoid the warnings without actually using the htps://.
CAG CheechDogg
12-09-2014, 07:45 PM
You can also select what directories or parts of your site are behind https and which are not ...
On my site I need some images hosted without https and I use the following in my htaccess
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}
You can do the very opposite of that as well ...
AndrewSimm
12-10-2014, 01:33 AM
You can have an ssl certificate on your site to avoid the warnings without actually using the htps://.
What do you mean. If you load an image or script over http:// on a site that is loading via https you will get the warning. Different browsers may display this warning in different ways but you still get it.
RichieBoy67
12-10-2014, 01:44 AM
You can redirect all https: to http: and add both to the white list in your vbulletin options and you should not get those warnings.
AndrewSimm
12-10-2014, 01:52 AM
You can redirect all https: to http: and add both to the white list in your vbulletin options and you should not get those warnings.
He wants the users to use https though.
--------------- Added 1418184496 at 1418184496 ---------------
This is what vbulletin needs.
https://xenforo.com/community/resources/digital-point-image-proxy.2747/
--------------- Added 1418189485 at 1418189485 ---------------
Here is what github did
https://github.com/blog/743-sidejack-prevention-phase-3-ssl-proxied-assets
https://github.com/atmos/camo
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.