loading a different robots.txt file for a different sub domain?

Ray gunblad3 at gmail.com
Fri May 21 17:53:45 MSD 2010


Yes.

server {
    listen 80 default;
    server_name www;

    location /robots.txt {
        alias /path/to/the/file1;
    }
}

server {
    listen 80;
    server_name server2;

    location /robots.txt {
        alias /path/to/the/file2;
    }
}


Ray.


On Fri, May 21, 2010 at 9:43 PM, Ilan Berkner <iberkner at gmail.com> wrote:
> Hi All,
> We have 2 sub-domain groups setup for processing incoming requests:
> 1. "server2"
> 2. all others, for example: "www"
> The 2 sub-domains share the same directory for delivery of static files
> (html, images, swf, etc.) but use different PHP backends.
> Is there a way, using nginx configuration to load a different robots.txt
> file when requested for one group vs. the other?
> Thanks!
>
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://nginx.org/mailman/listinfo/nginx
>
>



More information about the nginx mailing list