Hi friends,
My .htaccess is:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php
php_flag magic_quotes_gpc off
php_flag register_globals off
But everything I try to access by typing the real URL doesnt work... the
specification I put at .htaccess aways go to index.php (bootstrap) and try
to find a controller.
What I want is, if I try to access www.url.com/controller/action, works
fine, but if I try to access www.url.com/htmls/about.html, works fine too!
Is that possible?
Best regards,
José