CodeIgniter中实现泛域名解析
2015-01-24信息快讯网
这篇文章主要介绍了CodeIgniter中实现泛域名解析的方法,需要的朋友可以参考下
最近遇到一个项目要求使用二级域名,以方便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()的时候,如果要使用二级域名,就得另做处理了。
Codeigniter框架实现获取分页数据和总条数的方法
Yii的CDbCriteria查询条件用法实例
Yii框架获取当前controlle和action对应id的方法
Yii核心组件AssetManager原理分析
ThinkPHP采用原生query实现关联查询left join实例
Yii框架关联查询with用法分析
php 删除cookie方法详解
Codeigniter购物车类不能添加中文的解决方法
ThinkPHP中__initialize()和类的构造函数__construct()用法分析
浅析php适配器模式(Adapter)
thinkphp使用literal防止模板标签被解析的方法
完善CodeIgniter在IDE中代码提示功能的方法
php实现建立多层级目录的方法
CodeIgniter中使用cookie的三种方式详解
CodeIgniter采用config控制的多语言实现根据浏览器语言自动转换功能
ThinkPHP跳转页success及error模板实例教程
PHP采用XML-RPC构造Web Service实例教程
CodeIgniter模板引擎使用实例
PHP缓存机制Output Control详解
PHP下通过QRCode类库创建中间带网站LOGO的二维码
CodeIgniter实现更改view文件夹路径的方法
CodeIgniter安全相关设置汇总