> Even better use mod_rewrite so that .inc files
> are never displayed :-)

mod_rewrite is severe overkill for this.  Just use:

<Files ~ "\.inc$">
    Order allow,deny
    Deny from all
</Files>

-Rasmus


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to