当前位置:首页 > CMS教程 > 其它CMS > 列表

CodeIgniter中实现泛域名解析

发布:smiling 来源: PHP粉丝网  添加日期:2021-03-22 14:06:38 浏览: 评论:0 

这篇文章主要介绍了CodeIgniter中实现泛域名解析的方法,需要的朋友可以参考下

最近遇到一个项目要求使用二级域名,以方便SEO,由于采用的是CodeIgniter框架,这个框架虽然提供了灵活的路由功能,但是不能实现二级域名。查询了多很资料之后,经过几番测试得出了解决方法。本例采用www.mysite.com这个假域名。

步骤1:

首先在httpd.conf中建立virtualhost

  1. <VirtualHost *:80> 
  2.   ServerAdmin admin@163.com 
  3.   DocumentRoot "D:/www/cms" 
  4.   ServerName www.mysite.com 
  5.   ServerAlias *.mysite.com #这里采用泛解析的方式 
  6.   ErrorLog "logs/mysite.com-error.log" 
  7.   CustomLog "logs/mysite.com.log" common 
  8. </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.com

127.0.0.1 category.mysite.com

步骤3:

修改:system/core/URI.php的_set_uri_string方法

  1. /** 
  2.  * Set the URI String 
  3.  * 
  4.  * @access public 
  5.  * @param string 
  6.  * @return string 
  7.  */ 
  8. function _set_uri_string($str
  9.  // Filter out control characters 
  10.  $str = remove_invisible_characters($str, FALSE); 
  11.  // If the URI contains only a slash we'll kill it 
  12.  $this->uri_string = ($str == '/') ? '' : $str
  13.  // Add by fengyun for url rewrite at 2013-1-25 1:02:27 
  14.  @include(APPPATH.'config/domain'.EXT); 
  15.  $arrServerName = explode('.'$_SERVER['SERVER_NAME']); 
  16.  if (in_array($arrServerName[0], $domain)) { 
  17.  $this->uri_string = '/' . $arrServerName[0]."/" . $this->uri_string; 
  18.  } 

这里主要是为了让URL能正确的被CI理解。

步骤4:在application/config/下建立一个domain.php文件。内容如下:

  1. if ( ! defined('BASEPATH')) 
  2. exit('No direct script access allowed'); 
  3. $domain = array('category',"detail","info","archive"); 

至此已经基本完成了,不过,使用site_url()的时候,如果要使用二级域名,就得另做处理了。

Tags: CodeIgniter泛域名解析

分享到: