I have a simple php form that uses action="index.php", so when the form is submitted I get this: dev.mysite.net/apps/myapp/r4/index.php
But I would like it to display as: dev.mysite.net/apps/myapp/r4/results/
This is what I have so far, but it is not working:
RewriteEngine On
RewriteBase /
RewriteRule ^dev.mysite.net/apps/myapp/r4/index.php? dev.mysite.net/apps/myapp/r4/results/ [NC,L]
I am new to URL rewriting so any help would be great.