I have the following page which contains a single post and a number of comments:
http://mysite.com/tips
When a user posts a comment, I add meta-data to it so I can filter comments by using these URL's:
http://mysite/tips?id=cat&filter_id=1
http://mysite/tips?id=dog&filter_id=2
I want to use the following url's instead:
http://mysite/tips/cat
http://mysite/tips/dog
The tips page displays a list of posts based on the query string parameters.
I worked through this tutorial, which seemed to be what I needed, but when I type in my url, I get a page not found error. http://thereforei.am/2011/10/28/advanced-taxonomy-queries-with-pretty-urls/
Is this possible?
