文件上传-请求的URL [filename.php]在此服务器上找不到


file upload - The requested URL [filename.php] was not found on this server

    <?php
    echo "hello";   
?>
<!DOCTYPE html>
<html>
    <head>
    </head>
    <body>
        <form action="/one1.php" method="POST" enctype="multipart/form-data">
            <input type="file" name="image" />
            <input type="submit"/>
        </form>
    </body>
</html>

我的服务器上有一个Url此url正常工作。我在这里写了echo "hello"

但是在这个url中我写了HTML文件上传代码

提示请求的URL [one1.php]在此服务器上找不到

我检查了file_upload是否打开

确保form标签上的'action'属性设置为/one1.php

得到答案后我联系了主机组。他们告诉我关闭我面板上的mod安全功能。