2015年9月14日 星期一

Telling gcc directly to link a library statically

gcc -lx264 動態連結
gcc -l:libx264.a 把 libx264 靜態連結到目標檔案中
神奇的 -l: 功能!(注意:多一個)

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...