在Cakephp中的所有URL中添加子域

时间:2012-05-11 14:12:06

标签: cakephp subdomain

如果用户会话中存在子域,我希望所有Cakephp网址都使用子域名...因此,如果用户会话中有一个条目“子域名:用户”,则所有页面都将以“用户”作为前缀:例如user.example.com,user.example.com/settings。

有一种简单的方法吗?

感谢,

kSeudo

3 个答案:

答案 0 :(得分:6)

您可以使用自定义路线类。在APP / Lib / Route中创建一个名为UserSubdomainRoute.php的文件并将其放入其中。

<?php
App::uses('AuthComponent', 'Controller/Component');
class UserSubdomainRoute extends CakeRoute {

/**
 * @var CakeRequest
 */
    private $Request;

/**
 * Length of domain's TLD
 *
 * @var int
 */
    public static $_tldLength = 1;

    public function __construct($template, $defaults = array(), $options = array()) {
        parent::__construct($template, $defaults, $options);

        $this->Request = new CakeRequest();
        $this->options = array_merge(array('protocol' => 'http'), $options);
    }

/**
 * Sets tld length
 *
 * @param $length
 * @return mixed void|int
 */
    public static function tldLength($length = null) {
        if (is_null($length)) {
            return self::$_tldLength;
        }

        self::$_tldLength = $length;
    }

/**
 * Writes out full url with protocol and subdomain
 *
 * @param $params
 * @return string
 */
    protected function _writeUrl($params) {
        $protocol = $this->options['protocol'];
        $subdomain = AuthComponent::user('subdomain');
        if (empty($subdomain)) {
            $subdomain = 'www';
        }
        $domain = $this->_getDomain();
        $url = parent::_writeUrl($params);

        return "{$protocol}://{$subdomain}.{$domain}{$url}";
    }

/**
 * Get domain name
 *
 * @return string
 */
    protected function _getDomain() {
        return $this->Request->domain(self::$_tldLength);
    }

}

该类的一个改进可能是使$ Request静态。

不幸的是在Cake 2.0中没有办法设置defaultRotueClass,但是,我在2.1+中添加了该功能,我不想告诉你升级所以你必须为你的所有路由手动指定它在第三个参数中如此:

Router::connect(..., ..., array('routeClass' => 'UserSubdomainRoute');

请务必在routes.php

的顶部添加
App::uses('UserSubdomainRoute', 'Lib/Route');

如果你升级到2.1+,你可以在routes.php的顶部添加它。

Router::defaultRouteClass('UserSubdomainRoute');

然后指定的任何路径将使用该路由类。

路由类的主要部分是_writeUrl方法。它检查会话中是否设置了subdomain密钥,否则使用www并构建完整的URL以返回。

抬头:没有测试过课程,仍然在学校只是想给你一个快速启动。它只是我的SubdomainRoute的修改版本,它的工作方式略有不同(它只用于匹配设置某个子域的路由,因为我的应用中的ex匹配clients子域到我的ClientsAdminPanel插件。可以在此处抓取:http://bin.cakephp.org/view/50699397如果您需要UserSubdomainRoute和我的SubdomainRoute(在链接中)的组合,您也可以看到它是如何完成的。

希望现在有所帮助。如果有任何问题,请告诉我。

编辑: 这是强制重定向的方法 - 有些东西告诉我有更好的方法。如果我能想到的话,我会更新。

public function beforeFilter() {
     $subdomains = $this->request->subdomains();
     $subdomain = $this->Auth->user('subdomain');
     if (!empty($subdomain) && !in_array($subdomain, $subdomains)) {
        $this->redirect('http://' . $subdomain . '.site.com' . $this->request->here);
     }
}

答案 1 :(得分:0)

如果您希望为所有链接执行操作,可能您使用相同的方式在您的网站上显示您的所有网址,您是否使用类似$ this-&gt; html-&gt; link('/ / blah / asd)的内容/”, '等等'); ?

答案 2 :(得分:0)

IN Cake / Routing / Route

class SubdomainRoute extends CakeRoute {
public function match($params) {
    $subdomain = isset($params['subdomain']) ? $params['subdomain'] : null;
    unset($params['subdomain']);
    $path = parent::match($params);
    if ($subdomain) {
        $path = 'http://' . $subdomain . '.localhost' . $path;
    }
    return $path;
}
}

创建链接时,您可以执行以下操作以使链接指向其他子域。

echo $this->Html->link(
    'Other domain',
     array('subdomain' => 'test', 'controller' => 'posts', 'action' => 'add')
);