-- Julian102 <[email protected]> wrote (on Tuesday, 20 January 2009, 01:43 AM -0800): > I have created a web application using zend framework however when looking > at my site using google analytics I am not getting any hits other than to > the blog which is stored on the public directory. > > Im new to using the MVC design pattern and suspect it has something to do > with index.php redirectring requests.
index.php does not _redirect_ requests, it maps requests to appropriate handlers within the MVC. The end result is that a requested page is handled at the same URI at which it is requested. I have google analytics working on my own ZF-powered site, and have no issues. Is it possible that you don't have the analytics tags setup in your layout script? -- Matthew Weier O'Phinney Software Architect | [email protected] Zend Framework | http://framework.zend.com/
