None of my (working on Apache) rewrites are being masked or allowing any POST data under Litespeed
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^search/ http://mydomain.com/search.php [L,QSA]
Using a simple HTML form,
If I POST (via action) to search/, the $_POST array is empty and the URL incorrectly shows in the address bar as search.php (not masked - but is showing that the rewrite is being used)
If I POST (via action) to search.php (direct with no rewrite), the $_POST array is correctly populated and the URL shows in the address bar as search.php
What am I missing?
Thanks!
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^search/ http://mydomain.com/search.php [L,QSA]
Using a simple HTML form,
If I POST (via action) to search/, the $_POST array is empty and the URL incorrectly shows in the address bar as search.php (not masked - but is showing that the rewrite is being used)
If I POST (via action) to search.php (direct with no rewrite), the $_POST array is correctly populated and the URL shows in the address bar as search.php
What am I missing?
Thanks!