How to perform a query at the URL?
The reason behind this is how the URL rewriting works. No matter what is the setting of your permalink structure, all the requests will be redirected to index.php. So, for example: example.com/category/travel will eventually turn into: example.com/index.php?cat=travel So in your example: example.com/category/travel/?year=2007 will be turned into: example.com/index.php?cat=travel&year=2007 and possibly because the last argument overrides the … Read more