Cara mudah enable mod_rewrite Nginx. Tambahkan try_files $uri $uri/ /index.php?$args; di konfigurasi host nginx.
# nano /etc/nginx/sites-available/host.conf
server { ... location / { try_files $uri $uri/ /index.php?$args; }}
# /etc/init.d/nginx restart