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

CodeIgniter中實(shí)現(xiàn)泛域名解析

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

步驟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:

我要實(shí)現(xiàn)這樣的效果:
http://www.mysite.com/category/news/1.html  =====>  http://category.mysite.com/news/1.html
為了確保能正常訪問這個(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)基本完成了,不過,使用site_url()的時(shí)候,如果要使用二級(jí)域名,就得另做處理了。

php技術(shù)CodeIgniter中實(shí)現(xiàn)泛域名解析,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 蕲春县| 屏东市| 河源市| 塔城市| 溧水县| 景东| 彰武县| 太和县| 宝山区| 阿尔山市| 榆树市| 贵南县| 上林县| 凤城市| 灌阳县| 金平| 海伦市| 利川市| 册亨县| 青海省| 曲阜市| 垫江县| 长顺县| 那坡县| 兖州市| 诸城市| 开封县| 南昌县| 巴青县| 荆门市| 东明县| 宽甸| 米脂县| 九台市| 珠海市| 达孜县| 肥东县| 通化县| 绥化市| 辽源市| 双辽市|