Tagged Questions
1
vote
1answer
293 views
Does WP Have a Function To Generate .htaccess RewriteCond?
I know that I can edit .htaccess manually and add a RewriteCond statement inside, but I need to build a plugin that does this the proper way by using WP rewrites which then get pushed into .htaccess ...
1
vote
1answer
207 views
How To Consistently Enforce Rewrite Rule in Plugin Development
Let's say I create a customer support plugin that hijacks the /support part of the URL and redirects it to an MVC framework in my app folder of my plugin folder, like so:
RewriteRule ^support(.*)$ ...