Hi all!
I use mod_rewrite on my site, here is .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^robots.txt robots.txt [L]
RewriteRule ^index.php(.*)$ index.php$1 [L]
RewriteRule ^admin.php(.*)$ admin.php$1 [L]
RewriteRule ^(.*)$ index.php [L, QSA]
</IfModule>
It works ideal on my home server (Apache 1.3.3), but in the internet (Apache 1.3.7) I came across a problem with POST requests.
When I use form (i.e. <form action="http://server.com/guestbook/" action="post">), index.php didn't get POST variables ($_POST array).
Is it possible to use POST with mod_rewrite-redirecting?
Please, could you help me?
P.S. Sorry, if this question have already been discussing.
