Bir kullanıcı sörf eğer Zend çerçevede, http://base/url/index.php yerine http://base/url ve açıkça, MVC kullanarak, sistem gerçek baz url düşünüyor http://base/url/index.php/ ve göre Bu sistemdeki tüm URL'leri hesaplar.
So, if I have a controller XXX and action YYY The link will be
http://base/url/index.php/XXX/YYY which is of course wrong.
Şu anda index.php bir satır ekleyerek bu çözüyorum:
$_SERVER["REQUEST_URI"]=str_replace('index.php','',$_SERVER["REQUEST_URI"]);
Bunu çözmek için ZF içinde yerleşik bir yol olup olmadığını merak ediyorum.