Hey there, this is a newbie Zend question. Under a site location: “mydomain.org/subA/subB”, if we go to this location without logging in (or having a session), it i) redirects to a login page. Otherwise, it ii) redirects to a race registration form. Now, I’d thought that Apache rewrite rules did that, but there’s not config that indicates that in our project .htaccess file:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ /index.php [NC,L]
The only mechanisms I know that can do this sort of rewriting are i) Apache's mod_rewrite or ii) rewriting through Zend's controller or router components. Is there anything else I could be missing? Like I said I'm a PHP/Zend newbie, so it'd be nice to have something that can trace that request to see which systems it passes through.
Thanks