程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> CodeIgniter中實現泛域名解析

CodeIgniter中實現泛域名解析

編輯:PHP綜合

最近遇到一個項目要求使用二級域名,以方便SEO,由於采用的是CodeIgniter框架,這個框架雖然提供了靈活的路由功能,但是不能實現二級域名。查詢了多很資料之後,經過幾番測試得出了解決方法。本例采用www.mysite.com這個假域名。

步驟1:

首先在httpd.conf中建立virtualhost

<VirtualHost *:80>
  ServerAdmin [email protected]
  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()的時候,如果要使用二級域名,就得另做處理了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved