Hi,
The easiest solution is to put another .htaccess file in the htmls/
directory with the following in it:
RewriteEndgine off
Regards,
Rob...
On 27 Dec 2007, at 13:20, José de Menezes Soares Neto wrote:
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é