CI架構
最近遇到一個項目要求使用次層網域,以方便SEO,由於採用的是CodeIgniter架構,這個架構雖然提供了靈活的路由功能,但是不能實現次層網域。查詢了多很資料之後,經過幾番測試得出瞭解決方法。本例採用www.mysite.com這個假網域名稱。
步驟1:
首先在httpd.conf中建立virtualhost
ServerAdmin admin@163.com DocumentRoot "D:/www/cms" ServerName www.mysite.com ServerAlias *.mysite.com #這裡採用泛解析的方式 ErrorLog "logs/mysite.com-error.log" CustomLog "logs/mysite.com.log" common
步驟2:
我要實現這樣的效果:
http://www.mysite.com/category/news/1.html =====> http://category.mysite.com/news/1.html
為了確保能正常訪問這個domain,必須修改hosts檔案
127.0.0.1 www.mysite.com127.0.0.1 category.mysite.com
步驟3:
修改:system/core/URI.php的_set_uri_string方法
/** * Set the URI String * * @access public * @param string * @return string */function _set_uri_string($str){ // Filter out control characters $str = remove_invisible_characters($str, FALSE); // If the URI contains only a slash we'll kill it $this->uri_string = ($str == '/') ? '' : $str; // Add by fengyun for url rewrite at 2013-1-25 1:02:27 @include(APPPATH.'config/domain'.EXT); $arrServerName = explode('.', $_SERVER['SERVER_NAME']); if (in_array($arrServerName[0], $domain)) { $this->uri_string = '/' . $arrServerName[0]."/" . $this->uri_string; }}
這裡主要是為了讓URL能正確的被CI理解。
步驟4:在application/config/下建立一個domain.php檔案。內容如下:
<?phpif ( ! defined('BASEPATH'))exit('No direct script access allowed');$domain = array('category',"detail","info","archive");
至此已經基本完成了,不過,使用site_url()的時候,如果要使用次層網域,就得另做處理了。