Showing posts with label Nginx. Show all posts
Showing posts with label Nginx. Show all posts

Enable Mod_rewrite Nginx


Cara mudah enable mod_rewrite Nginx. Tambahkan try_files $uri $uri/ /index.php?$args; di konfigurasi host nginx.

Enable Mod_rewrite Nginx

# nano /etc/nginx/sites-available/host.conf
server {       ...        location / {            try_files $uri $uri/ /index.php?$args;        }}
# /etc/init.d/nginx restart