.htaccess发布数据

时间:2012-11-14 13:44:51

标签: php .htaccess

我已经设置了我的.htaccess指向了一个404错误的index.php ErrorDocument 404 /index.php
如果url不是数据库中的页面,index.php将返回404,否则显示正确的页面。

如何在此处发送任何$ _POST数据?

1 个答案:

答案 0 :(得分:0)

我设法通过使用:

来解决这个问题
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule .* index.php

感谢马里奥让我走上了正确的道路。