如何在CodeIgniter 中設定Base URL 來最佳化資源存取
在CodeIgniter 中,設定正確的Base URL 對於存取至關重要高效地使用圖像、庫和其他資源。讓我們深入研究您的問題並提供解決方案:
了解config.php 中的base_url
config.php 中的base_url 參數決定Web 應用程式的根目錄。您目前的設定$config['base_url'] = "http://".$_SERVER["HTTP_HOST"]."/";是不夠的,因為它依賴伺服器變量,而伺服器變數可能並不總是提供正確的路徑。
解決方案:設定基本 URL
要修正此問題,請編輯您的設定。建立php 檔案並更新base_url 參數,如下:
$config['base_url'] = 'http://localhost/Appsite/website/';
請記住根據您的特定目錄調整值
使用$config['base_url'] 存取資源
一旦設定了基本URL,就可以使用base_url()函數輕鬆存取資源:
正在存取圖片:
<img src="<?php echo base_url(); ?>images/images.PNG">
訪問其他URL:
<a href="<?php echo base_url(); ?>controllerName/methodName">Click Here</a>
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/css/style.css" />
# To remove index.php in URL RewriteEngine on RewriteCond !^(index\.php|assets|image|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/ [L,QSA]
訪問CSS 和其他資源:此外,要從URL 中刪除index.php,請將以下行加入您的.htaccess 檔案:注意: 確保您已在autoload. php 中載入URL 幫助程式以使用base_url()。
以上是如何在CodeIgniter中正確設定基本URL以最佳化資源存取?的詳細內容。更多資訊請關注PHP中文網其他相關文章!