Web Server

Rename .htaccess File

Rename .htaccess File

For most of the sites .htaccess file is handling the most of the stuffs, mainly the URL redirections of the site.

So site attacker can guess that you may have .htaccess file and they may harm your site.

They can access the .htaccess file if you have not protected it using the method described here.

But what if, you can rename the .htaccess file to any other name say htacc.ess , So there can be a rare chances for guessing the name of this file.

Yes you can inform server to read another file as a configuration file. But you need a access to the apache configuration file for this method.

Below is how that works.

While creating a virtual host you just need to give the AccessFileName directives.

You need to place below code while creating a virtualhost.

[cc lang=”apache”]
// So now htacc.ess will be served as .htaccess file
AccessFileName htacc.ess
[/cc]

Note: You require access to your httpd.conf file for this setting.

Shares:

Leave a Reply

Your email address will not be published. Required fields are marked *