How to serve different robots.txt for http and https on same site?












10














I got a small site which served by Apache (I can't put Nginx in front nor change Apache to anything), and it is set up to serve the same site both over http and https (no redirects http->https is there so far, so both http and https versions are served in parallel).



What I need is to set up .htaccess so the same URI via http and via https to serve different text file?



Like http://example.com/proto.txt says "The site is over http" while https://example.com/proto.txt would say "The site served over https".










share|improve this question
























  • Don't quite have the time to check the exact way to write this (and so just a comment, not an answer), but another option if you don't want to or can't change the main Apache config, is to use a RewriteRule in your .htaccess with a condition on it being served over https.
    – jcaron
    Nov 26 at 12:45










  • @dcaron, this is exactly I need, I just can't figure out how to do that exactly, and need an advice or (better) code snippet to do that :)
    – Kevin M
    Nov 27 at 10:24










  • Your http and https sites are in different <VirtualHost>s. So you simply need to configure a different robots.txt in one of them. Around so: RewriteRule ^/robots.txt$ /path/to/alternative/robots.txt [L]
    – peterh
    Dec 12 at 18:08
















10














I got a small site which served by Apache (I can't put Nginx in front nor change Apache to anything), and it is set up to serve the same site both over http and https (no redirects http->https is there so far, so both http and https versions are served in parallel).



What I need is to set up .htaccess so the same URI via http and via https to serve different text file?



Like http://example.com/proto.txt says "The site is over http" while https://example.com/proto.txt would say "The site served over https".










share|improve this question
























  • Don't quite have the time to check the exact way to write this (and so just a comment, not an answer), but another option if you don't want to or can't change the main Apache config, is to use a RewriteRule in your .htaccess with a condition on it being served over https.
    – jcaron
    Nov 26 at 12:45










  • @dcaron, this is exactly I need, I just can't figure out how to do that exactly, and need an advice or (better) code snippet to do that :)
    – Kevin M
    Nov 27 at 10:24










  • Your http and https sites are in different <VirtualHost>s. So you simply need to configure a different robots.txt in one of them. Around so: RewriteRule ^/robots.txt$ /path/to/alternative/robots.txt [L]
    – peterh
    Dec 12 at 18:08














10












10








10







I got a small site which served by Apache (I can't put Nginx in front nor change Apache to anything), and it is set up to serve the same site both over http and https (no redirects http->https is there so far, so both http and https versions are served in parallel).



What I need is to set up .htaccess so the same URI via http and via https to serve different text file?



Like http://example.com/proto.txt says "The site is over http" while https://example.com/proto.txt would say "The site served over https".










share|improve this question















I got a small site which served by Apache (I can't put Nginx in front nor change Apache to anything), and it is set up to serve the same site both over http and https (no redirects http->https is there so far, so both http and https versions are served in parallel).



What I need is to set up .htaccess so the same URI via http and via https to serve different text file?



Like http://example.com/proto.txt says "The site is over http" while https://example.com/proto.txt would say "The site served over https".







apache-2.4 https http htpasswd






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 26 at 9:37









Mr Shunz

2,22911821




2,22911821










asked Nov 26 at 9:06









Kevin M

515




515












  • Don't quite have the time to check the exact way to write this (and so just a comment, not an answer), but another option if you don't want to or can't change the main Apache config, is to use a RewriteRule in your .htaccess with a condition on it being served over https.
    – jcaron
    Nov 26 at 12:45










  • @dcaron, this is exactly I need, I just can't figure out how to do that exactly, and need an advice or (better) code snippet to do that :)
    – Kevin M
    Nov 27 at 10:24










  • Your http and https sites are in different <VirtualHost>s. So you simply need to configure a different robots.txt in one of them. Around so: RewriteRule ^/robots.txt$ /path/to/alternative/robots.txt [L]
    – peterh
    Dec 12 at 18:08


















  • Don't quite have the time to check the exact way to write this (and so just a comment, not an answer), but another option if you don't want to or can't change the main Apache config, is to use a RewriteRule in your .htaccess with a condition on it being served over https.
    – jcaron
    Nov 26 at 12:45










  • @dcaron, this is exactly I need, I just can't figure out how to do that exactly, and need an advice or (better) code snippet to do that :)
    – Kevin M
    Nov 27 at 10:24










  • Your http and https sites are in different <VirtualHost>s. So you simply need to configure a different robots.txt in one of them. Around so: RewriteRule ^/robots.txt$ /path/to/alternative/robots.txt [L]
    – peterh
    Dec 12 at 18:08
















Don't quite have the time to check the exact way to write this (and so just a comment, not an answer), but another option if you don't want to or can't change the main Apache config, is to use a RewriteRule in your .htaccess with a condition on it being served over https.
– jcaron
Nov 26 at 12:45




Don't quite have the time to check the exact way to write this (and so just a comment, not an answer), but another option if you don't want to or can't change the main Apache config, is to use a RewriteRule in your .htaccess with a condition on it being served over https.
– jcaron
Nov 26 at 12:45












@dcaron, this is exactly I need, I just can't figure out how to do that exactly, and need an advice or (better) code snippet to do that :)
– Kevin M
Nov 27 at 10:24




@dcaron, this is exactly I need, I just can't figure out how to do that exactly, and need an advice or (better) code snippet to do that :)
– Kevin M
Nov 27 at 10:24












Your http and https sites are in different <VirtualHost>s. So you simply need to configure a different robots.txt in one of them. Around so: RewriteRule ^/robots.txt$ /path/to/alternative/robots.txt [L]
– peterh
Dec 12 at 18:08




Your http and https sites are in different <VirtualHost>s. So you simply need to configure a different robots.txt in one of them. Around so: RewriteRule ^/robots.txt$ /path/to/alternative/robots.txt [L]
– peterh
Dec 12 at 18:08










2 Answers
2






active

oldest

votes


















19














Use an Alias



Create two files, robots.txt and robots_http.txt and add this to your http VirtualHost:



Alias "/robots.txt" "/path/to/documentroot/robots_http.txt"





share|improve this answer























  • Can not modify vhost settings, can only edit .htaccess, this is the trick.
    – Kevin M
    Nov 27 at 10:11



















2














If you can't or won't change the "main" Apache config but need to do it in a .htaccess file, you can use a RewriteRule with a RewriteCond that checks for HTTPS.



Something along the lines of:



RewriteEngine On

RewriteCond %{HTTPS} "on"
RewriteRule robots.txt robots_https.txt [L]


should probably work (I didn't test it).



Note that this is based on Apache doing HTTPS termination itself. If HTTPS termination is done on a reverse proxy before it, then the condition will likely be different (and will depend on the configuration of the reverse proxy and Apache).






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "2"
    };
    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%2fserverfault.com%2fquestions%2f941613%2fhow-to-serve-different-robots-txt-for-http-and-https-on-same-site%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    19














    Use an Alias



    Create two files, robots.txt and robots_http.txt and add this to your http VirtualHost:



    Alias "/robots.txt" "/path/to/documentroot/robots_http.txt"





    share|improve this answer























    • Can not modify vhost settings, can only edit .htaccess, this is the trick.
      – Kevin M
      Nov 27 at 10:11
















    19














    Use an Alias



    Create two files, robots.txt and robots_http.txt and add this to your http VirtualHost:



    Alias "/robots.txt" "/path/to/documentroot/robots_http.txt"





    share|improve this answer























    • Can not modify vhost settings, can only edit .htaccess, this is the trick.
      – Kevin M
      Nov 27 at 10:11














    19












    19








    19






    Use an Alias



    Create two files, robots.txt and robots_http.txt and add this to your http VirtualHost:



    Alias "/robots.txt" "/path/to/documentroot/robots_http.txt"





    share|improve this answer














    Use an Alias



    Create two files, robots.txt and robots_http.txt and add this to your http VirtualHost:



    Alias "/robots.txt" "/path/to/documentroot/robots_http.txt"






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 26 at 9:14

























    answered Nov 26 at 9:09









    Gerald Schneider

    5,80612245




    5,80612245












    • Can not modify vhost settings, can only edit .htaccess, this is the trick.
      – Kevin M
      Nov 27 at 10:11


















    • Can not modify vhost settings, can only edit .htaccess, this is the trick.
      – Kevin M
      Nov 27 at 10:11
















    Can not modify vhost settings, can only edit .htaccess, this is the trick.
    – Kevin M
    Nov 27 at 10:11




    Can not modify vhost settings, can only edit .htaccess, this is the trick.
    – Kevin M
    Nov 27 at 10:11













    2














    If you can't or won't change the "main" Apache config but need to do it in a .htaccess file, you can use a RewriteRule with a RewriteCond that checks for HTTPS.



    Something along the lines of:



    RewriteEngine On

    RewriteCond %{HTTPS} "on"
    RewriteRule robots.txt robots_https.txt [L]


    should probably work (I didn't test it).



    Note that this is based on Apache doing HTTPS termination itself. If HTTPS termination is done on a reverse proxy before it, then the condition will likely be different (and will depend on the configuration of the reverse proxy and Apache).






    share|improve this answer


























      2














      If you can't or won't change the "main" Apache config but need to do it in a .htaccess file, you can use a RewriteRule with a RewriteCond that checks for HTTPS.



      Something along the lines of:



      RewriteEngine On

      RewriteCond %{HTTPS} "on"
      RewriteRule robots.txt robots_https.txt [L]


      should probably work (I didn't test it).



      Note that this is based on Apache doing HTTPS termination itself. If HTTPS termination is done on a reverse proxy before it, then the condition will likely be different (and will depend on the configuration of the reverse proxy and Apache).






      share|improve this answer
























        2












        2








        2






        If you can't or won't change the "main" Apache config but need to do it in a .htaccess file, you can use a RewriteRule with a RewriteCond that checks for HTTPS.



        Something along the lines of:



        RewriteEngine On

        RewriteCond %{HTTPS} "on"
        RewriteRule robots.txt robots_https.txt [L]


        should probably work (I didn't test it).



        Note that this is based on Apache doing HTTPS termination itself. If HTTPS termination is done on a reverse proxy before it, then the condition will likely be different (and will depend on the configuration of the reverse proxy and Apache).






        share|improve this answer












        If you can't or won't change the "main" Apache config but need to do it in a .htaccess file, you can use a RewriteRule with a RewriteCond that checks for HTTPS.



        Something along the lines of:



        RewriteEngine On

        RewriteCond %{HTTPS} "on"
        RewriteRule robots.txt robots_https.txt [L]


        should probably work (I didn't test it).



        Note that this is based on Apache doing HTTPS termination itself. If HTTPS termination is done on a reverse proxy before it, then the condition will likely be different (and will depend on the configuration of the reverse proxy and Apache).







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 27 at 11:10









        jcaron

        24617




        24617






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Server Fault!


            • 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%2fserverfault.com%2fquestions%2f941613%2fhow-to-serve-different-robots-txt-for-http-and-https-on-same-site%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

            Quarter-circle Tiles

            build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

            Mont Emei