PHP Rewrites
-
Ok so I can’t use .htaccess or nginx.conf to do rewrites, BUT I wanted to see if I could do PHP rewrites.
I’m using WP-Snippets to do the following rewrite:
______________________________function seo_rule() {
add_rewrite_rule(
‘^services/([^/]*)/?’,
‘page.php?str=$matches[1]’,
‘top’
);
}add_action( ‘init’, ‘seo_rule’ );
_________________________________It doesn’t seem to be rewriting at all though – what would y’all suggest I do?
WP.com: Yes
Jetpack: Yes
Correct account: YesThe blog I need help with is: (visible only to moderators and staff)
- The topic ‘PHP Rewrites’ is closed to new replies.