0
比方說,我有域名「example.com」 我想添加一個路線,例如當URL爲「example.com/whatever/follows」時,它會重定向到「http://www.example.com/whatever/follows」(也會轉發查詢字符串)。如何在Zend的主機名路由中使'www'可選?
基本上我想轉換到Zend以下的Apache重寫規則:
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,NC]
我們如何能做到這一點,如果可能的話?
乾杯,