我是一個使用CodeIgniter/Bootstrap/WAMP的新手。我在訪問應用程序文件夾外的文件夾時遇到問題。我浪費了幾個小時試圖解決這個問題,但無濟於事。我錯過了什麼嗎?這是我迄今爲止所做的。使用WAMP->禁止訪問的Codeigniter和Bootstrap
文件目錄
www/myapp/application
www/myapp/system
www/myapp/components
components/css
components/js
components/images
我做了什麼
edit the config.php
$config['rewrite_short_tags'] =TRUE;
set the autoload.php
$autoload['helper'] = array('url');
的template.php
<!DOCTYPE html>
<html>
<head>
<title>PM with BAM</title>
<meta name ="viewport" content="width = device-width, initial-scale=1.0">
<link href="<?php echo base_url();?>components/css/bootstrap.css" rel ="stylesheet" media="screen">
</head>
<body>
<script src="<?php echo base_url();?>components/js/bootstrap.js"> </script>
</body>
</html>
我試圖刪除.htaccess文件中的應用程序和系統FOL但我仍然會得到同樣的錯誤。
我已經閱讀了一些例子和相關的問題,但nothings作品。 有什麼幫助嗎?
woah woah ...如果您使用的CI爲什麼你使用**包括**?正確加載視圖。你應該**從不**需要一個包含,或在您的PHP代碼所需。 – Jakub
哎呀..感謝提醒我。我會改變它。 – user2594265
也可以傳遞的路徑,資源到'base_url'函數像這樣:'' –