我有一个 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: Internal server error。如果我删除 .htaccess 文件一切正常...如何正确配置 .htaccess 文件?
谢谢!!!