I\'m trying to create a rewrite rule in Wordpress to create direct pretty links to search results.
I\'m working with a custom post type called \'object\'
My resu
The rewrite rule needs to be placed as
RewriteEngine On RewriteBase / RewriteRule ^objects/new(.*)$ /objects/?filter=new [L] RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]