Forum Discussion
Peter_Reilly
Nimbostratus
Feb 28, 2008Disallow Robots
Will the following iRule work for disallowing robots?
Thanks,
when HTTP_REQUEST {
if {[HTTP::path] eq "/robots.txt"}
{
HTTP::respond 200 content "
User-agent: *
Disallow: /
"
}
}
- hoolio
Cirrostratus
That is close. robots.txt is a text file, so you don't need to send HTML tags in the response. You can use \r\n to insert a new line:when HTTP_REQUEST { if {[string tolower [HTTP::path]] eq "/robots.txt"}{ HTTP::respond 200 content "User-agent: *\r\nDisallow: /" } }
- aneilsingh_5064
Nimbostratus
Can you confirm the /robots.txt file is in the root of the website? - hoolio
Cirrostratus
If you want to check for any path ending in /robots.txt, you could use:when HTTP_REQUEST { if {[string tolower [HTTP::path]] ends_with "/robots.txt"}{ HTTP::respond 200 content "User-agent: *\r\nDisallow: /" } }
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects