Başka altalana $ this-> url ()

1 Cevap php

Benim uygulama için subdomain yarattı.

host_www.type = "Zend_Controller_Router_Route_Hostname"
host_www.route = "www.mywebsite.com"
host_www.defaults.module = "default"
host_www.defaults.controller = "index"
host_www.defaults.action = "index"

store_infos.route = "storeinfos/:store"
store_infos.defaults.controller = "store"
store_infos.defaults.action = "store-infos"
store_infos.defaults.module = "default"
store_infos.chain = "host_www"

host_products.type = "Zend_Controller_Router_Route_Hostname"
host_products.route = "products.mywebsite.com"
host_products.defaults.module = "products"
host_products.defaults.controller = "products"
host_products.defaults.action = "index"

product_infos.type = "Zend_Controller_Router_Route_Regex"
product_infos.route = "([-\w]+).htm"
product_infos.reverse = "%s.htm"
product_infos.map.1 = "q"
product_infos.defaults.module = "products"
product_infos.defaults.controller = "products"
product_infos.defaults.action = "see-product"
product_infos.chain = "host_products"

Bu zend yapılandırma ini dosyasında sözdizimi yolları zincirleme için özellikle, doğru olup olmadığını bilmiyorum.

: Ben bu alt olduğumu bir kez, adresler $ this-> url () bu gibi inşa

<a href="<?= $this->url(array('store' => 1234), 'store_infos', true) ?>">
See store informations
</a>

hala bunu www.mywebsite.com işaret etmek istediğiniz subdomain products.mywebsite.com, işaret

Şu an için, ben bunu:

<a href="http://www.mywebsite.com<?= $this->url(array('store' => 1234), 'store_infos', true) ?>">
See store informations
</a>

Ama hiç esnek değil.

Bir çözüm bir parametre eklemek için, ya da benim yapılandırma dosyası yanlış var mı?

Yardımlarınız için şimdiden teşekkürler.

1 Cevap

Eğer index.php de, adresi sunucu kısmını tanımlayabilirsiniz:

// Define the server
defined('APPLICATION_SERVER')
    || define('APPLICATION_SERVER', $_SERVER['SERVER_NAME']);

Ve sonra kullanın:

<a href="http://<?=APPLICATION_SERVER."/".$this->url(array('store'=>'1234'))?>">