Zend Framework:从路由获取子域参数

时间:2011-03-03 13:25:16

标签: apache zend-framework mod-rewrite nginx

UPD: 解决了。问题是因为我们使用nginx作为前端。所以nginx没有将HTTP_HOST传递给apache。


你好!

我在生产服务器上的基本控制器中获取子域参数时遇到问题,而在本地主机上则没问题。来自url的其他参数,如控制器,动作按原样返回。

在生产时返回null:

$agencyName = (string) $this->_getParam('agency');

没有对.htaccess进行任何更改:

RewriteEngine On
RewriteRule ^main - [L,NC]
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

这是我的vhost设置:

<VirtualHost *:8080>
        ServerName  agencies.domain.com
        ServerAlias *.agencies.domain.com

        ErrorLog /var/log/apache2/agencies.domain_errors.log

        DocumentRoot /var/www/agencies.domain.com/public/

        <Directory "/var/www/agencies.domain.com/public">
                Options -Indexes FollowSymLinks Includes
                DirectoryIndex index.shtml index.php
                AllowOverride All
                # Controls who can get stuff from this server.
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>

有人知道它为什么会发生吗?

UPD:

Bootstrap中的路由器

public function run()
    {
        $frontController = Zend_Controller_Front::getInstance();
        $router = $frontController->getRouter();

        $plainPathRoute = new Zend_Controller_Router_Route(
                        ':module/:controller/:action/*',
                        array(
                            'module' => 'default',
                            'controller' => 'index',
                            'action' => 'index',
                        )
        );

        $config = $this->getOptions();

        $hostnameRoute = new Zend_Controller_Router_Route_Hostname(
                        ':agency.' . $config['siteUri'],
                        NULL,
                        array(
                            'agency' => '([a-z0-9]+)'
                        )
        );

        $router->addRoute('subdomain', $hostnameRoute->chain($plainPathRoute));

        parent::run();
    }

是的,我确实定义了$ config ['siteUri'],我也尝试使用:agency.domain.com再次遇到同样的问题

2 个答案:

答案 0 :(得分:4)

使用以下内容:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initRoute()
    {
        $this->bootstrap('FrontController');
        $router = $this->getResource('FrontController')->getRouter();
        $router->removeDefaultRoutes();
        $plainPathRoute = new Zend_Controller_Router_Route(
                        ':module/:controller/:action/*',
                        array(
                            'module' => 'default',
                            'controller' => 'index',
                            'action' => 'index',
                        )
        );
        $router->addRoute('default', $plainPathRoute);
        $config = $this->getOptions();
        $hostnameRoute = new Zend_Controller_Router_Route_Hostname(
                        ':agency.' . $config['siteUri'],
                        NULL,
                        array(
                            'agency' => '([a-z0-9]+)'
                        )
        );
        $router->addRoute('subdomain', $hostnameRoute->chain($plainPathRoute));
    }
}

如果您提供有效的子域名(即只包含字符a-z0-9),则会在代理商中传递,如果没有,则不会设置代理商。 (至少它适用于我使用ZF 1.11.3:p)。

答案 1 :(得分:1)

解决。问题是因为我们使用nginx作为前端。所以nginx没有将HTTP_HOST传递给apache。