|
最近遇到一個(gè)項(xiàng)目要求使用二級(jí)域名,以方便SEO,由于采用的是CodeIgniter框架,這個(gè)框架雖然提供了靈活的路由功能,但是不能實(shí)現(xiàn)二級(jí)域名。查詢了多很資料之后,經(jīng)過(guò)幾番測(cè)試得出了解決方法。本例采用www.mysite.com這個(gè)假域名。
步驟1:
首先在httpd.conf中建立virtualhost
<VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "D:/www/cms" ServerName www.mysite.com ServerAlias *.mysite.com #這里采用泛解析的方式 ErrorLog "logs/mysite.com-error.log" CustomLog "logs/mysite.com.log" common</VirtualHost>
步驟2:
我要實(shí)現(xiàn)這樣的效果:
http://www.mysite.com/category/news/1.html =====> http://category.mysite.com/news/1.html
為了確保能正常訪問(wèn)這個(gè)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/下建立一個(gè)domain.php文件。內(nèi)容如下:
<?phpif ( ! defined('BASEPATH'))exit('No direct script access allowed');$domain = array('category',"detail","info","archive");
至此已經(jīng)基本完成了,不過(guò),使用site_url()的時(shí)候,如果要使用二級(jí)域名,就得另做處理了。
php技術(shù):CodeIgniter中實(shí)現(xiàn)泛域名解析,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。