欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2014年07月19日 16:28:00   投稿:shichen2014  
這篇文章主要介紹了CodeIgniter中實(shí)現(xiàn)泛域名解析的方法,需要的朋友可以參考下

最近遇到一個(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 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
為了確保能正常訪問(wèn)這個(gè)domain,必須修改hosts文件

127.0.0.1 www.mysite.com
127.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)容如下:

<?php
if ( ! defined('BASEPATH'))
exit('No direct script access allowed');
$domain = array('category',"detail","info","archive");

至此已經(jīng)基本完成了,不過(guò),使用site_url()的時(shí)候,如果要使用二級(jí)域名,就得另做處理了。

相關(guān)文章

最新評(píng)論