在使用CI框架的使用經常碰到跳轉和路徑方面的問題,site_url()和base_url()很容易混淆,下面來說說他們的區別!
假如你config文件裡面的base_url和index_page是這樣定義的:
config['base_url'] = "http://domain.com/";
config['index_page'] = "index.php";
那麼你若使用site_url("news/php/2");則實際url為
http://domain.com/index.php/news/php/2
若使用base_url("news/php/2");則url為:
http://domain.com/news/php2
發現沒有,base_url()少了一個index.php
以上文字很簡單,小伙伴們是否了解了CI框架中site_url()和base_url()的區別了呢,有疑問就請留言吧。