色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

CodeIgniter中實現泛域名解析

最近遇到一個項目要求使用二級域名,以方便SEO,由于采用的是CodeIgniter框架,這個框架雖然提供了靈活的路由功能,但是不能實現二級域名。查詢了多很資料之后,經過幾番測試得出了解決方法。本例采用www.mysite.com這個假域名。

步驟1:

首先在httpd.conf中建立virtualhost

<VirtualHost *:80>  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</VirtualHost>

步驟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()的時候,如果要使用二級域名,就得另做處理了。

php技術CodeIgniter中實現泛域名解析,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 凤山市| 荆州市| 凤凰县| 缙云县| 祥云县| 鄂尔多斯市| 祥云县| 高台县| 德江县| 同德县| 剑川县| 禹城市| 渭源县| 牙克石市| 山丹县| 同德县| 伊吾县| 明溪县| 壤塘县| 云南省| 库车县| 阳江市| 仁怀市| 安顺市| 沾化县| 五大连池市| 麻江县| 晴隆县| 溆浦县| 弋阳县| 浦江县| 拜城县| 余干县| 平昌县| 青铜峡市| 同江市| 定陶县| 兰考县| 株洲县| 营山县| 阿克苏市|