Linux Sysadmin Blog

Linux Sysadmin Blog header image 2

nginx rewrite to index

May 27th, 2009 · No Comments · hosting

Looking to rewrite all file requests to index?

location / {
root /var/www/nginx-default;
index index.html;
if (!-e $request_filename) {
rewrite . /index.html last;
}
}

About max

Max Veprinsky has wrote 39 articles on this blog.

Related Posts:

Tags: ·

No Comments so far ↓

There are no comments yet...Kick things off by filling out the form below.

Leave a Comment