CodeIgniter中實現泛網域名稱解析_PHP

來源:互聯網
上載者:User
關鍵字 CodeIgniter 泛網域名稱 解析
CI架構

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

步驟1:

首先在httpd.conf中建立virtualhost

  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

步驟2:

我要實現這樣的效果:
http://www.mysite.com/category/news/1.html =====> http://category.mysite.com/news/1.html
為了確保能正常訪問這個domain,必須修改hosts檔案

127.0.0.1 www.mysite.com127.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檔案。內容如下:

<?phpif ( ! defined('BASEPATH'))exit('No direct script access allowed');$domain = array('category',"detail","info","archive");

至此已經基本完成了,不過,使用site_url()的時候,如果要使用次層網域,就得另做處理了。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.