当前位置: 移动技术网 > IT编程>开发语言>PHP > CodeIgniter中实现泛域名解析

CodeIgniter中实现泛域名解析

2019年03月20日  | 移动技术网IT编程  | 我要评论

最近遇到一个项目要求使用二级域名,以方便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.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/下建立一个domain.php文件。内容如下:

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

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

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网