我是一直得到403 Forbidden錯誤,我不能夠讓我的JSON數據在所有...這是我的HTML源代碼:爲什麼我一直得到403禁止的問題?
<html>
<head>
<meta name="keywords" content="jquery,ui,easy,easyui,web">
<meta name="description" content="easyui help you build your web page easily!">
<title>jQuery EasyUI Demo</title>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
</head>
<body>
<h1>TreeGrid</h1>
<script>
(function(){
$.getJSON("data/data.json", function(data){
console.log(data); // i am not getting data here
});
})();
</script>
</body>
</html>
的URL路徑是正確的。我得到的錯誤爲:
GET http://localhost/~xxxxxx/dataTest/data/data.json 403 (Forbidden)
我該如何解決這個問題?
當您嘗試直接訪問http://localhost/~xxxxxx/dataTest/data/data.json時會發生什麼? – Osiris
對不起,我越來越喜歡這樣:Forbidden 您無權訪問此服務器上的/~xxxxx/dataTest/data/data.json。 Apache/2.2.24(Unix)DAV/2 PHP/5.3.26與本地主機端口80 Suhosin-Patch服務器 – 3gwebtrain