Skip to content

Instantly share code, notes, and snippets.

@fliptheweb
Created August 29, 2011 13:44
Show Gist options
  • Save fliptheweb/1178417 to your computer and use it in GitHub Desktop.
Save fliptheweb/1178417 to your computer and use it in GitHub Desktop.
# по модулю реврайте лучше это почитай http://sysoev.ru/nginx/docs/http/ngx_http_rewrite_module.html
# там есть директивы насчет $request_filename
location /events/i/ {
root /path/to/events/i/;
index index.php index.html;
# а если не существует
if (!-f $request_filename) {
rewrite ^(.*)$ /index.php?q=$1 break;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment