How to rewrite any URL but exclude existing pages and posts?
-
Hi there
I need a rewrite rule to catch any URL on my WordPress except my existing pages and posts. The following rewrites everything. How to make this exclude the existing pages/posts?function custom_rewrite_rule() { add_rewrite_rule('^.([^/]*)?', 'index.php?page_id=5', 'top' ); } add_action('init', 'custom_rewrite_rule', 10, 0);
Thanks.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to rewrite any URL but exclude existing pages and posts?’ is closed to new replies.