codeigniter中泛域名解析实例教程

发布时间:2020-02-09编辑:脚本学堂
本文介绍了codeigniter中实现泛域名解析的方法,codeigniter框架中配置泛域名解析的详细步骤,个人感觉还不错,需要的朋友参考下。

项目中要求使用二级域名,采用的是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.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;
 } // www.jb200.com
}
 

以上修改是为了让URL能正确的被CI理解。

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

复制代码 代码示例:
<?php
if ( ! defined('BASEPATH'))
exit('No direct script access allowed');
$domain = array('category',"detail","info","archive");

注意,使用site_url()时,如果要使用二级域名,请另做处理。