Posts Tagged allow override

htaccess Allow Override

Htaccess allow override is a perfect solution to increase your website performance. Allow Override enables searching of .htaccess file in all website directories, to specify which directory contains allow override and which directory doesn’t we will use allow override command.

We will disable allow override in our root folder and enable allow override in other website directories.

AllowOverride None

Our each directory will contain allow override enabled

<Directory /public_html/foldername>
AllowOverride Options
</Directory>

/public_html/foldername is a directory contains .htaccess file.

Well, this method increases your website load times and improves your website webs appearance in search engines.

No Comments