Nginx Rewrite to Index Posted by Max Veprinsky - May 27th, 2009 | Comments Looking to rewrite all file requests to index? 1 2 3 4 5 6 7 location / { root /var/www/nginx-default; index index.html; if (!-e $request_filename) { rewrite . /index.html last; } }