我已经设置了我的.htaccess指向了一个404错误的index.php
ErrorDocument 404 /index.php
如果url不是数据库中的页面,index.php将返回404,否则显示正确的页面。
如何在此处发送任何$ _POST数据?
答案 0 :(得分:0)
我设法通过使用:
来解决这个问题RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule .* index.php
感谢马里奥让我走上了正确的道路。