Rewrite all requests to index.php with nginx (ok)

https://stackoverflow.com/questions/12924896/rewrite-all-requests-to-index-php-with-nginx

location / {
            try_files $uri $uri/ /index.php;
}

Last updated