htaccess rewrite to https except for few pages and files










0















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




























    0















    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


























      0












      0








      0








      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 '18 at 23:09







      Ernst Reidinga

















      asked Nov 11 '18 at 22:11









      Ernst ReidingaErnst Reidinga

      10011




      10011






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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',
            autoActivateHeartbeat: false,
            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









            0














            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





























              0














              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



























                0












                0








                0







                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 '18 at 3:29

























                answered Nov 12 '18 at 3:21









                Ernst ReidingaErnst Reidinga

                10011




                10011





























                    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.




                    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

                    𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

                    Edmonton

                    Crossroads (UK TV series)