htaccess rewrite to https except for few pages and files











up vote
0
down vote

favorite












I use htaccess file to rewrite some url's and also to rewrite http requests to https:



# No Caching for page files
<filesMatch ".(html|htm|js|css|php)$">
<IfModule mod_headers.c>
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires 0
</IfModule>
</filesMatch>

# Error pages
ErrorDocument 404 https://%{HTTP_HOST}/#/404
ErrorDocument 500 https://%{HTTP_HOST}/#/500

RewriteEngine On

# Rewrite www to non
RewriteCond %{HTTP_HOST} !=""
RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R,L]

# Rewrite http to https
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} !^/tvgids/
RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

# Ignore conditions for files and folders
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

RewriteBase /

# Rewrite /api to api.php
RewriteRule ^api/(.+)$ api/api.php [QSA,L]

# Rewrite /tvgids to guide/index.php
RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]

# Rewrite /tv to m3u/index.php
RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]

# Rewrite /get to get/index.php
RewriteRule ^get/(.+)$ get/index.php

# Rewrite /downloads to downloads.php
# RewriteRule ^download/(.+)$ download/download.php [QSA,L]


But the rewrite condition for /tvgids doesnt work:



RewriteCond %{REQUEST_URI} !^/tvgids/


Instead if i try to enter /tvgids/abc i get a 404.



I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.



Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?



I also tried this:



RewriteCond %{REQUEST_URI} !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]


which also redirects me to https.. but if i test it here:
https://htaccess.madewithlove.be/



It does work -- so am i doing something wrong here?










share|improve this question




























    up vote
    0
    down vote

    favorite












    I use htaccess file to rewrite some url's and also to rewrite http requests to https:



    # No Caching for page files
    <filesMatch ".(html|htm|js|css|php)$">
    <IfModule mod_headers.c>
    Header set Cache-Control "no-cache, no-store, must-revalidate"
    Header set Pragma "no-cache"
    Header set Expires 0
    </IfModule>
    </filesMatch>

    # Error pages
    ErrorDocument 404 https://%{HTTP_HOST}/#/404
    ErrorDocument 500 https://%{HTTP_HOST}/#/500

    RewriteEngine On

    # Rewrite www to non
    RewriteCond %{HTTP_HOST} !=""
    RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
    RewriteRule ^(.*)$ https://%1/$1 [R,L]

    # Rewrite http to https
    RewriteCond %{HTTPS} !=on
    RewriteCond %{REQUEST_URI} !^/tvgids/
    RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

    # Ignore conditions for files and folders
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteBase /

    # Rewrite /api to api.php
    RewriteRule ^api/(.+)$ api/api.php [QSA,L]

    # Rewrite /tvgids to guide/index.php
    RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]

    # Rewrite /tv to m3u/index.php
    RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]

    # Rewrite /get to get/index.php
    RewriteRule ^get/(.+)$ get/index.php

    # Rewrite /downloads to downloads.php
    # RewriteRule ^download/(.+)$ download/download.php [QSA,L]


    But the rewrite condition for /tvgids doesnt work:



    RewriteCond %{REQUEST_URI} !^/tvgids/


    Instead if i try to enter /tvgids/abc i get a 404.



    I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.



    Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?



    I also tried this:



    RewriteCond %{REQUEST_URI} !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]


    which also redirects me to https.. but if i test it here:
    https://htaccess.madewithlove.be/



    It does work -- so am i doing something wrong here?










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I use htaccess file to rewrite some url's and also to rewrite http requests to https:



      # No Caching for page files
      <filesMatch ".(html|htm|js|css|php)$">
      <IfModule mod_headers.c>
      Header set Cache-Control "no-cache, no-store, must-revalidate"
      Header set Pragma "no-cache"
      Header set Expires 0
      </IfModule>
      </filesMatch>

      # Error pages
      ErrorDocument 404 https://%{HTTP_HOST}/#/404
      ErrorDocument 500 https://%{HTTP_HOST}/#/500

      RewriteEngine On

      # Rewrite www to non
      RewriteCond %{HTTP_HOST} !=""
      RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
      RewriteRule ^(.*)$ https://%1/$1 [R,L]

      # Rewrite http to https
      RewriteCond %{HTTPS} !=on
      RewriteCond %{REQUEST_URI} !^/tvgids/
      RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

      # Ignore conditions for files and folders
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !-f

      RewriteBase /

      # Rewrite /api to api.php
      RewriteRule ^api/(.+)$ api/api.php [QSA,L]

      # Rewrite /tvgids to guide/index.php
      RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]

      # Rewrite /tv to m3u/index.php
      RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]

      # Rewrite /get to get/index.php
      RewriteRule ^get/(.+)$ get/index.php

      # Rewrite /downloads to downloads.php
      # RewriteRule ^download/(.+)$ download/download.php [QSA,L]


      But the rewrite condition for /tvgids doesnt work:



      RewriteCond %{REQUEST_URI} !^/tvgids/


      Instead if i try to enter /tvgids/abc i get a 404.



      I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.



      Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?



      I also tried this:



      RewriteCond %{REQUEST_URI} !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]


      which also redirects me to https.. but if i test it here:
      https://htaccess.madewithlove.be/



      It does work -- so am i doing something wrong here?










      share|improve this question















      I use htaccess file to rewrite some url's and also to rewrite http requests to https:



      # No Caching for page files
      <filesMatch ".(html|htm|js|css|php)$">
      <IfModule mod_headers.c>
      Header set Cache-Control "no-cache, no-store, must-revalidate"
      Header set Pragma "no-cache"
      Header set Expires 0
      </IfModule>
      </filesMatch>

      # Error pages
      ErrorDocument 404 https://%{HTTP_HOST}/#/404
      ErrorDocument 500 https://%{HTTP_HOST}/#/500

      RewriteEngine On

      # Rewrite www to non
      RewriteCond %{HTTP_HOST} !=""
      RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
      RewriteRule ^(.*)$ https://%1/$1 [R,L]

      # Rewrite http to https
      RewriteCond %{HTTPS} !=on
      RewriteCond %{REQUEST_URI} !^/tvgids/
      RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

      # Ignore conditions for files and folders
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !-f

      RewriteBase /

      # Rewrite /api to api.php
      RewriteRule ^api/(.+)$ api/api.php [QSA,L]

      # Rewrite /tvgids to guide/index.php
      RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]

      # Rewrite /tv to m3u/index.php
      RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]

      # Rewrite /get to get/index.php
      RewriteRule ^get/(.+)$ get/index.php

      # Rewrite /downloads to downloads.php
      # RewriteRule ^download/(.+)$ download/download.php [QSA,L]


      But the rewrite condition for /tvgids doesnt work:



      RewriteCond %{REQUEST_URI} !^/tvgids/


      Instead if i try to enter /tvgids/abc i get a 404.



      I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.



      Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?



      I also tried this:



      RewriteCond %{REQUEST_URI} !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]


      which also redirects me to https.. but if i test it here:
      https://htaccess.madewithlove.be/



      It does work -- so am i doing something wrong here?







      php apache .htaccess routes






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 11 at 23:09

























      asked Nov 11 at 22:11









      Ernst Reidinga

      9011




      9011
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          I actually got it working with this code:



          # Rewrite http to https
          RewriteCond %{HTTPS} !=on
          RewriteCond %{THE_REQUEST} !(/tvgids/|/tv/) [NC]
          RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]


          the RewriteCond %{THE_REQUEST} !/tvgids/ [NC] sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253754%2fhtaccess-rewrite-to-https-except-for-few-pages-and-files%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            I actually got it working with this code:



            # Rewrite http to https
            RewriteCond %{HTTPS} !=on
            RewriteCond %{THE_REQUEST} !(/tvgids/|/tv/) [NC]
            RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]


            the RewriteCond %{THE_REQUEST} !/tvgids/ [NC] sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..






            share|improve this answer



























              up vote
              0
              down vote













              I actually got it working with this code:



              # Rewrite http to https
              RewriteCond %{HTTPS} !=on
              RewriteCond %{THE_REQUEST} !(/tvgids/|/tv/) [NC]
              RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]


              the RewriteCond %{THE_REQUEST} !/tvgids/ [NC] sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..






              share|improve this answer

























                up vote
                0
                down vote










                up vote
                0
                down vote









                I actually got it working with this code:



                # Rewrite http to https
                RewriteCond %{HTTPS} !=on
                RewriteCond %{THE_REQUEST} !(/tvgids/|/tv/) [NC]
                RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]


                the RewriteCond %{THE_REQUEST} !/tvgids/ [NC] sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..






                share|improve this answer














                I actually got it working with this code:



                # Rewrite http to https
                RewriteCond %{HTTPS} !=on
                RewriteCond %{THE_REQUEST} !(/tvgids/|/tv/) [NC]
                RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]


                the RewriteCond %{THE_REQUEST} !/tvgids/ [NC] sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 12 at 3:29

























                answered Nov 12 at 3:21









                Ernst Reidinga

                9011




                9011






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253754%2fhtaccess-rewrite-to-https-except-for-few-pages-and-files%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    鏡平學校

                    ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

                    Why https connections are so slow when debugging (stepping over) in Java?