I have a rewriterule in my htaccess file that looks like this:
RewriteRule ^Signup$ /dst2/signup.php
I would like to use POST instead of GET for the data that gets passed by this form.
The rule above, however, sends the data as a GET.
Is there a way to use a POST with a rewriterule?
G-Man