我想根据 Zend_Registry 变量中的值编写 htaccess 重定向规则
像这样的东西
if(Zend_Registry::get('country') == 'uk'){
RewriteRule (.+).html /abc/page/directory/abc/view/$1 [L]
}elseif(Zend_Registry::get('country') == 'ca'){
RewriteRule (.+).html /xyz/static/directory/xyz/view/$1 [L]
}
提前谢谢你。