There is a static page site where I try to add micro-cms using lines in .htaccess:
Options -Indexes ErrorDocument 403 /403.php ErrorDocument 404 /403.php ErrorDocument 500 /403.php those. all requests for non-existent pages will be redirected to the 403.php engine. Everything was fine, until I took the forms - it turns out, if you transfer data not to a specific script, but to the current page, for example:
<form action='". $_SERVER['REQUEST_URI'] ."' method=post> then the engine does not receive data, it needs:
<form action='/403.php' method=post> Is it possible to configure .htaccess so that the engine always receives $_POST ?