Can Some one help with ssl skype or icq

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • esham
    Confirmed User
    • Mar 2004
    • 629

    #1

    Can Some one help with ssl skype or icq

    I need to have all pages on my site but one page served as secure.

    Ive been trying to use .htaccess but i keep getting errors saying this page isnt redirecting properly.

    Can some one contact me I can send you some traffic for your time.
    720210453
    techn9ne3443 skype
    Double Your profit From Ad Brokers
  • NickBaer
    Nick Baer
    • Jun 2005
    • 1392

    #2
    Have you asked the tech support for your Server Host?

    Sometimes, those matters (regarding SSL) are part of the configuration of the Server itself.
    Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

    Comment

    • Paul&John
      Confirmed User
      • Aug 2005
      • 8617

      #3
      Yeah sometimes I do get that page isnt redirecting properly message too. I'm using two versions of htaccess.. The first works on one server the second on an other.. but in case you are on cloudflare then just force SSL at CF..

      Version 1:
      Code:
      RewriteEngine  On
      RewriteCond %{HTTP_HOST} !^www\.
      RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
      RewriteCond %{SERVER_PORT} 80 
      RewriteRule ^(.*)$ https://www.YOUR_DOMAIN_GOES_HERE.com/$1 [R,L]
      Version 2:
      Code:
      RewriteEngine On
      RewriteCond %{HTTP_HOST} !^www\.
      RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
      RewriteCond %{HTTP:X-Forwarded-Proto} !https
      RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
      (both force the user to www. version of the site)
      Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
      Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here

      Comment

      • esham
        Confirmed User
        • Mar 2004
        • 629

        #4
        My site is set at non www. Im using cloudflare. But i have one page that has to be served http://
        Is it possible to use a rule to exclude the one page in cloudflare? Then just set ssl on.

        My homepage I cant get green lock due to having to use a non secure image. (the site is toplist sends good traffic) But i was still wanting to redirect to https homepage.




        Originally posted by Paul&John
        Yeah sometimes I do get that page isnt redirecting properly message too. I'm using two versions of htaccess.. The first works on one server the second on an other.. but in case you are on cloudflare then just force SSL at CF..

        Version 1:
        Code:
        RewriteEngine  On
        RewriteCond %{HTTP_HOST} !^www\.
        RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
        RewriteCond %{SERVER_PORT} 80 
        RewriteRule ^(.*)$ https://www.YOUR_DOMAIN_GOES_HERE.com/$1 [R,L]
        Version 2:
        Code:
        RewriteEngine On
        RewriteCond %{HTTP_HOST} !^www\.
        RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
        RewriteCond %{HTTP:X-Forwarded-Proto} !https
        RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
        (both force the user to www. version of the site)
        Double Your profit From Ad Brokers

        Comment

        • Paul&John
          Confirmed User
          • Aug 2005
          • 8617

          #5
          You can try this to exclude that single directory/url: https://stackoverflow.com/questions/...ages-in-apache

          Code:
          RewriteEngine On
          
          RewriteCond %{HTTPS} =off
          RewriteCond %{REQUEST_URI} !^\/page1\/
          RewriteCond %{REQUEST_URI} !^\/page2\/
          RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    
          
          RewriteCond %{HTTPS} =on
          RewriteCond %{REQUEST_URI} \/page1\/ [OR]
          RewriteCond %{REQUEST_URI} \/page2\/
          RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]
          Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
          Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here

          Comment

          • fivestarpornsitescom
            Registered User
            • Jun 2016
            • 76

            #6
            The page isn’t redirecting properly

            An error occurred during a connection url.com.

            This problem can sometimes be caused by disabling or refusing to accept cookies.

            RewriteCond %{HTTPS} =off
            RewriteCond %{REQUEST_URI} !^\/page.html\/
            RewriteCond %{REQUEST_URI} !^\/page2\/
            RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]

            RewriteCond %{HTTPS} =on
            RewriteCond %{REQUEST_URI} \/url.com\/ [OR]
            RewriteCond %{REQUEST_URI} \/page2\/
            RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]

            I think i saw that link before. Is that right. without http in front. OR does it need fullurl.

            Originally posted by Paul&John
            You can try this to exclude that single directory/url: https://stackoverflow.com/questions/...ages-in-apache

            Code:
            RewriteEngine On
            
            RewriteCond %{HTTPS} =off
            RewriteCond %{REQUEST_URI} !^\/page1\/
            RewriteCond %{REQUEST_URI} !^\/page2\/
            RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    
            
            RewriteCond %{HTTPS} =on
            RewriteCond %{REQUEST_URI} \/page1\/ [OR]
            RewriteCond %{REQUEST_URI} \/page2\/
            RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]

            Comment

            • Paul&John
              Confirmed User
              • Aug 2005
              • 8617

              #7
              Should look like this with a real example where you don't want to redirect domain.com/test_url/

              Code:
              RewriteEngine On
              
              RewriteCond %{HTTPS} =off
              RewriteCond %{REQUEST_URI} !^\/test_url\/
              RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    
              
              RewriteCond %{HTTPS} =on
              RewriteCond %{REQUEST_URI} \/test_url\/
              RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]
              But while you are on Cloudflare you may try to exclude it on their end and force everything else to SSL:
              https://stackoverflow.com/questions/...ed-url-pattern
              Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
              Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here

              Comment

              • fivestarpornsitescom
                Registered User
                • Jun 2016
                • 76

                #8
                I keep getting that same error for everything i tried. Looks like I tried the cloudflare rule before and today but it still not working.

                with Always use HTTPS on i finally got my padlock. But that http page still gets that error.

                Comment

                • Paul&John
                  Confirmed User
                  • Aug 2005
                  • 8617

                  #9
                  Explanation for those redirection loops
                  https://support.cloudflare.com/hc/en...redirect-loop-

                  So in shortness it looks like this (I assume):
                  a) if you have your own certificate (lets encrypt etc) -> then switch the SSL option to Full ( https://support.cloudflare.com/hc/en...-options-mean- ) and use htaccess redirect
                  b) if you don't have an SSL certificate then forget about htaccess redirection and use the 'Always use HTTPS' at CF.
                  Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
                  Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here

                  Comment

                  • fivestarpornsitescom
                    Registered User
                    • Jun 2016
                    • 76

                    #10
                    ITs with cloudflare I have it set as flexible since that was the only one that didn't give me errors at the time. Would it be better to switch to lets encrypt so i could have Full SSL - strict.

                    Comment

                    • Paul&John
                      Confirmed User
                      • Aug 2005
                      • 8617

                      #11
                      So we worked out the solution with fivestar, so in case you are on CF and want to exclude one page, then the following are the steps to do so:

                      Code:
                      1) under CRYPTO disable 'Always use HTTPS'
                      2) under PAGE RULES add the following rules:
                      first rule: domain.com/page.html -> SSL OFF
                      second rule: http://domain.com/* -> ALWAYS USE HTTPS
                      The first rule has to be the page/directory you want to exclude..
                      Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
                      Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here

                      Comment

                      Working...