我得到這個錯誤,同時在服務器上部署php項目。實際上我使用codeigniter php框架。加載資源失敗:服務器響應狀態爲403(禁止)
請求URL低於http://localhost:80/index.php
是代碼。
<?
if(isset($js)){
if(is_array($js)){
if(count($js) >= 1){
foreach($js as $file){
if(file_exists("../www/js/{$file}")){
?>
<script type="text/javascript" language="javascript" src="<?php echo
base_url();?>js/<?=$file?>"></script>
<?
}
}
}
} else {
?>
<script type="text/javascript" language="javascript" src="<?php echo
base_url();?>js/<?=$js?>"></script>
<?
}
}
?>
這顯示錯誤的瀏覽器,如
GET http://localhost/js/%3C?=$file?%3E
GET http://localhost/js/%3C?=$js?%3E
這是爲什麼錯誤occurring.Please幫助我。
似乎是與權限的問題。確保已將適當的權限提供給您嘗試加載的文件夾。 – Rikesh
我是新來的PHP如何給予許可。可以幫忙請 – Atul
@Rikesh W中的w表示Widows。在windows上權限幾乎從來都不是問題。除非有人遵循* nix人的建議並搞砸了系統。 – RiggsFolly