nineworlds@gmail.com wrote:
> RewriteCond /opt/www/dev/homepages%{REQUEST_FILENAME} -f
Ah yes, You're checking only for an existing file. Now when you're
requesting a directory, the condition would fail, of course.
To check also for an existing directory, use
RewriteCond /opt/www/dev/homepages%{REQUEST_FILENAME} -f [OR]
RewriteCond /opt/www/dev/homepages%{REQUEST_FILENAME} -d
--
Robert