Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. add_filter('robots_txt', 'wpse_248124_robots_txt', 10, 2);
  2.  
  3. function wpse_248124_robots_txt($output, $public) {
  4.  
  5. return 'YOUR DESIRED OUTPUT';
  6. }
  7.  
  8. # Don't log access to /robots.txt
  9. location = /robots.txt {
  10. access_log off;
  11. log_not_found off;
  12. }
  13.  
  14. # Don't log access to /robots.txt
  15. location = /robots.txt {
  16. try_files $uri $uri/ /index.php?$args;
  17. access_log off;
  18. log_not_found off;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement