Hi,
Is there a way to modify the incoming URL request with rewrite?
In my case, I have an external application calling mine with the URL
I want this to be rewritten as
I tried the following .htaccess to do that.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^folder$ /folder/index.php [L]
</IfModule>
But the problem here is, this is a POST request and because of rewrite server is sending back the '301 Moved Permanently' status back to the requester.
Is there any way I can skip sending 301 and redirect without loosing the POST data?
Thanks,
Girish