How to Rewrite the URL
Here I mentioned the url
http://localhost/wp/2016/?category_name=cricket
now i need to rearrange the url like
http://localhost/wp/cricket/2016.
here cricket is category name and 2016 is year.
Remove the ?Query String Variable not a value of the querystring in the wordpress URl.
I tried
RewriteRule ^([0-9]{4})/?$/(.+)/([^/]+)/?$ /index.php/$1/?category_name=$2[QSA,L]
But Not Working
Topic url-rewriting Wordpress
Category Web