zend_router_hostnameの「動的サブドメイン」に問題があります。次のようなコードがあります(そのようなサブドメインはありませんが、ルートパラメーターとしてサブドメインを使用したい):
protected function _initRoutes() {
$front = Zend_Controller_Front::getInstance();
$router = $front->getRouter();
$config = $this->getOptions();
Zend_Registry::set("config", $config);
$routerHost = new Zend_Controller_Router_Hostname(':language.mysite.local',
array('controller' => 'index',
'action' => 'index',
'language'=>'pl')
);
$router->addDefaultRoutes();
$routes = $router->getRoutes();
foreach ($routes as $key => $routeEntry) {
$router->addRoute($key, $routeHost->chain($routeEntry));
}
}
しかし、たとえば:pl.mysite.localを呼び出そうとすると、サーバーが見つかりませんというエラーが表示されます。私の/etc/hostsファイルは次のとおりです。
127.0.0.1 localhost
127.0.2.1 mysite.local
127.0.3.1 mysite.dev
127.0.4.1 mysite.production
そして私の仮想ホストの設定は次のとおりです。
VirtualHost *:80>
DocumentRoot "/var/www/mysite/public"
ServerName mysite.local
ServerAlias *.mysite.local
# This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory "/var/www/mysite/public">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
私は次のようなエントリでdnsmasqを使用しようとしました:
address=/local/127.0.0.1
しかし、それでも問題は発生します。この状況を解決する方法がわかりません。何が間違っているのかわかりません。