In article <bpido7$1ocmc6$1@ID-18487.news.uni-berlin.de>,
Davide Bianchi <davideyeahsure.RemoveThis@onlyforfun.net> wrote:
> patpro <patpro.RemoveThis@boleskine.patpro.net> wrote:
> > and requires a dedicated client.
>
> ??? you can use a normal browser as an FTP client, and a basic
> client is present in EVERY Os.
and we all know their great quality...
> > enabling htaccess file will slow down Apache
>
> Enabling every kind of user/password authentication will slow down
> Apache.
I don't even talk about user auth. Just the "AlloOverride ALL" will slow
down Apache. And btw, htaccess is not limited to user auth.
I quote <a style='text-decoration: underline;' href="http://httpd.apache.org/docs/misc/perf-tuning.html#runtime" target="_blank">http://httpd.apache.org/docs/misc/perf-tuning.html#runtime</a> :
------------------------
AllowOverride
Wherever in your URL-space you allow overrides (typically .htaccess
files) Apache will attempt to open .htaccess for each filename
component. For example,
DocumentRoot /www/htdocs
<Directory />
AllowOverride all
</Directory>
and a request is made for the URI /index.html. Then Apache will attempt
to open /.htaccess, /www/.htaccess, and /www/htdocs/.htaccess. The
solutions are similar to the previous case of Options FollowSymLinks.
For highest performance use AllowOverride None everywhere in your
filesystem.
See also the .htaccess tutorial for further discussion of this.
-------------------------
patpro<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: pros and cons of htaccess?