发布后403错误

时间:2017-03-02 08:39:43

标签: php post http-status-code-403 php-ini

我有一个包含100多个输入的页面。当我发布页面时,我收到的错误如下。我没有找到问题的根源。所需的phpinfo值也低于。 Webserver是Apache / 2.2.27,没有任何htaccess代码。

我的代码风格:

<form role="form" action="" method="post">

    <button type="submit" id="btnsubmit" name="btnsubmit" class="btn btn-primary">Kaydet</button>
</form> 

error page

phpinfo

3 个答案:

答案 0 :(得分:1)

有很多事情可能导致此错误。

  1. 您的文件权限
  2. 您的Apache配置
  3. 你的.htaccess
  4. 如果您最近安装了apache,那么您的案例可能是第二个。否则它可能是你的.htaccess文件。

    基本上你需要在你的apache配置中查找deny或require指令,并且有类似的东西。

    AllowOverride All
    Require all granted
    

    有关详细信息,请参阅this answer。如果更改apache配置,请不要忘记重启apache。

答案 1 :(得分:0)

<form role="form" action="" method="post">
action="a.php" or a url 

答案 2 :(得分:0)

首先在表单操作中提供提交URL。

<form role="form" action="file_to_submit.php" method="post">

并将您的文件权限更改为0655。

在终端

中运行以下命令

chmod 655 file_to_submit.php