GET https://dominio.net/print?id=8 403 错误 ---- Hostinguer、jquery、ajax

问题描述 投票:0回答:0

当我使用 ajax 打印票时,服务器给我一个 403 错误。我使用调用 php 文件并执行它来打印票证的 ajax 函数。它在本地工作,但是当我将它上传到主机时,出现 403 错误。我更改了文件的读取和执行权限,但它不起作用。 我在 hostinger 上托管我的网站,我没有使用 wordpress,它是纯 php 代码。 enter image description here

<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>

<script>
    $(document).ready(function(){
        $('#btnImprimir').click(function(){
           $.ajax({
               url: '../ticket?idAbono=<?php echo $idAbono; ?>',
               type: 'POST',
               success: function(response){
                   if(response==1){
                       
                   }else{
                       
                   }
               }
           }); 
        });
    });
</script>

我尝试更改文件的权限,我在 .htaccess 中检查了对 php 文件的访问不受限制并且没有任何效果。

javascript php jquery ajax hosting
© www.soinside.com 2019 - 2024. All rights reserved.