Upon my nth read of the Quickstart something jumped out at me that I have overlooked the first times through. It allows for redirection of the url through the FrontController in cases where the url does not exist (this allows swf and flv files to be accessed. The preferred .htaccess content for mod_rewrite is as follows:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ – [NC,L]
RewriteRule ^.*$ index.php [NC,L]
It’s close to the recommended version that I discussed in a previous entry about mod_rewrite and .htaccess.
Related posts:
- Two ways to set of mod_rewrite You can ei
- Apache mod_rewrite in Zend and Flex integration- my friend .htaccess I’ve
- The Zend FrontController The Zend_C
- Blog Content Theft Prevention and Response I wanted t
- Facebook Vanity URLs: The morning after Yesterday
Related posts brought to you by Yet Another Related Posts Plugin.








