这是我的情景。
我有一个包含大量输入字段的表单。其中几个是网址的输入字段...当我输入http://google.com(或任何网址),然后点击“继续”按钮时,出现以下错误
Not Acceptable
An appropriate representation of the requested resource /new-product-action.php could not be found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
包含表单的文件名为new-product.php
,接收帖子数据的文件名为new-product-action.php
。
如果我取出网址并输入任何字符(不是这种格式http://blablabla.com),它就会起作用。
目前,new-product-action.php
只是使用
echo '<pre>';
print_r($_POST);
echo '</pre>';
为什么在以url格式传递字符串时,系统会失败。
谢谢。