htaccess is must for all projects…..

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
panprasath
Forum Newbie
Posts: 19
Joined: Thu Jul 24, 2008 3:35 am
Location: Chennai,Tamilnadu,India

htaccess is must for all projects…..

Post by panprasath »

Hi...

I am doing one project. I study some guide for htaccess. According to the guide, if you use htaccess the suite performance is reduced. So htaccess is must for all projects. Please explain…
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: htaccess is must for all projects…..

Post by requinix »

Performance is reduced therefore it is necessary? I don't get it.

Explain what? How the guide tells you something without explaining why? How "suite performance" is reduced? How every project out there must use features not available to all web servers?
User avatar
VladSun
DevNet Master
Posts: 4313
Joined: Wed Jun 27, 2007 9:44 am
Location: Sofia, Bulgaria

Re: htaccess is must for all projects…..

Post by VladSun »

AllowOverride Directive
.......
AllowOverride
...
When this directive is set to None, then .htaccess files are completely ignored. In this case, the server will not even attempt to read .htaccess files in the filesystem.
So, enabling .htaccess files on your web server reduces the performance of the service by adding file search and read operations.
There are 10 types of people in this world, those who understand binary and those who don't
User avatar
papa
Forum Regular
Posts: 958
Joined: Wed Aug 27, 2008 3:36 am
Location: Sweden/Sthlm

Re: htaccess is must for all projects…..

Post by papa »

VladSun wrote:
AllowOverride Directive
.......
AllowOverride
...
When this directive is set to None, then .htaccess files are completely ignored. In this case, the server will not even attempt to read .htaccess files in the filesystem.
So, enabling .htaccess files on your web server reduces the performance of the service by adding file search and read operations.
Computers works in mysterious ways... :roll:
Post Reply