我正在尝试使用Ajax将一些数据从smarty模板传递到php文件。
在javascript中的模板中:
$(document).ready(function() {
$(".redeem-button").click(function(){
var test = 'test';
$.ajax({
url: 'modules/Custom/ajaxtest.php',
data: {test: test},
type: 'POST',
success: function (data) {
$(".apply-left").html(data);
}
});
});
});
当我测试它时,我在控制台中收到此错误:
POST http://localhost/xcart/modules/Custom/ajaxtest.php 403 (Forbidden)
我试图添加:
require_once 'http://localhost/xcart/auth.php';
在ajaxtest.php但仍然没有运气......
如何让它发挥作用?
版本4.7.6 X-cart Gold
答案 0 :(得分:0)
可能的原因是
aim-server[~/www/xcart_4_6_x]$ cat modules/.htaccess
Deny from all
在这种情况下,请将此代码添加到您的 modules / Custom / .htaccess文件
Order Deny,Allow
<Files "*">
Deny from all
</Files>
<FilesMatch "^ajaxtest\.php$">
Allow from all
</FilesMatch>