使用ajax和.htaccess限制访问

时间:2012-10-30 09:47:13

标签: jquery ajax .htaccess request

我有一个jquery文件,使用php处理程序文件中的ajax-calls(jQuery api)处理一些mysql-data更改。

这是我的javascript:

$('#control1').click(function() {
    $('#control2').dialog({
        show: "blind",
        hide: "explode",
        width: "auto",
        draggable: false,
        modal: true,
        resizable: false,
        buttons: [
                  {
                      text: "Save",
                      click: function() {
                          $.ajax({
                             cache: false,
                             type: 'POST',
                             url: 'handler/some.handler.php',
                             data: $('#Form1').serialize(),
                             dataType: 'json',
                             beforeSend: function() {
                                 $('#Control3').fadeIn('fast');
                             },
                             success: function (data) {
                                 if (data.success) {
                                     alert(data.message);
                                     $(this).dialog("close");
                                     location.reload();
                                 } else {
                                     alert("Error occurred: " + data.message);
                                 }
                             },
                             error: function(xhr, ajaxOptions, thrownError) {
                                 alert("Error during process: " + thrownError);
                             },
                             complete: function () {
                                 $('#Control3').fadeOut('fast');
                             }
                          });
                      }
                  },
                  {
                      text: "Cancel",
                      click: function() { $(this).dialog("close"); }
                  }
                  ]
    });
});

在处理程序目录中,我放置了一个.htaccess文件来管理文件访问并限制异常:

<LimitExcept GET POST HEAD>
    Order deny, allow
    Deny from all
</LimitExcept>

但Apache总是返回 500:内部服务器错误。如果我删除.htaccess文件一切正常...如何正确配置.htaccess文件?

THX !!!

1 个答案:

答案 0 :(得分:0)

有点愚蠢,但如果Order被赋予多个参数,则apache会翻转。你有一个空间:

# here ----v
Order deny, allow

您只需删除它:

Order deny,allow