wordpress Nginx config file
server {
server_name example.com;
root /home/torbay/public_html/;
index index.php index.html index.htm;
location / {
# try_files $uri $uri/ /index.php$args;
try_files $uri $uri/ /index.php$is_args$args;
}
#location ~ ^/wp-json/ {
...
mandeepsingh.hashnode.dev2 min read