Advertisement
Guest User

Untitled

a guest
Jun 11th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. http {
  2. ...
  3. server {
  4. ...
  5. location = /favicon.ico {
  6. rewrite ^ /index.php;
  7. log_not_found off;
  8. }
  9.  
  10. location = /robots.txt {
  11. rewrite ^ /index.php;
  12. log_not_found off;
  13. }
  14.  
  15. location / {
  16. try_files $uri $uri/ /index.php?$args;
  17. }
  18. ...
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement