- Edited
Fix Nginx Server Wordpress error "The response is not a valid JSON response.". Also known as Nginx Wordpress permalink 404 error.
Put these code to Nginx Rewrite rule file and save.
location / {
try_files $uri $uri/ /index.php?$args;
}
Note: For Nginx Website Server Only