2015年9月4日 星期五

解決CI網頁圖片路徑問題

因為CodeIgniter會改寫網頁網址, 使得原本圖片的相對路徑會壞掉
例如:
http://{網址}/controller/function 頁面, 所有圖片的連結會變成
http://{網址}/controller/images/logo.png
導致找不到圖片

這時可用 HTML "BASE" tag, 來告訴 browser 圖片的相對路徑, 而非用瀏覽器目前的路徑

使用方式
在< head> 中加入: 區加入
< base href="< ?=base_url()?>" />

解決 CI 圖片路徑問題!

沒有留言:

Related Posts Plugin for WordPress, Blogger...