I'm new to nginx. I have everything up and running, except for one part. My WordPress site uses a real estate plugin that pulls in real estate listings.
The URLs look like this: http://www.mysite.com/idx/?idx-q-Cities=Acworth&idx-q-PropertyFeatures<0>=6974&idx-q-PropertyFeatures<1>=6904
Usually something like that URL is then rewritten by the plugin to be more search engine/user friendly to this:http://www.mysite.com/idx/city/acworth/?idx-q-PropertyFeatures<0>=6974&idx-q-PropertyFeatures<1>=6904
The problem is that Nginx is reading these correctly. I have the following rewrite which I know isn't sufficient as the above URLs are being sent back to the home page of my site.
location / { try_files $uri $uri/ /index.php?q=$uri&$args; }
How can I correct this so that I am able to see those listings?
Thanks, Keith
This has been corrected.