Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

172
Views
Same root folder for multiple website different robots.txt

I have a first website with this configuration:

server {
        server_name mywebsite.com;

        root /var/www/website/prod;
...
}

and a second one like this with the same root folder:

server {
        server_name pro.mywebsite.com;

        root /var/www/website/prod;
...
}

And the only problem is they have the same robots.txt file.

Is it possible to tell the second server to link the file robots.txt to another file like robots-pro.txt?

And by the way the url http://pro.mywebsite.com/robots.txt would open the file robots-pro.txt.

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

For the main domain I did to block robots-denyall.txt:

location /robots-denyall.txt {
        return 404;
}

And for the subdomain which I don't want to be referenced:

location = /robots.txt {
        alias /var/www/mywebsite/prod/robots-denyall.txt;
}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!