What is the function of .htaccess?

iamtheroon

Newbie
Joined
Aug 10, 2014
Messages
27
Reaction score
0
Hi
can anyone tell me why .htaccess is install in site.
How to add .htaccess to my site?
 
Code:
http://htaccess-guide.com/
read that, shidd !!!
 
The htaccess, among other things, is where you are going to implement redirects. Anytime a URL is requested it goes through the .htaccess first. Additionally, that's where you're going to put global rules for 'www' to non-www etc.
 
It is like a better version of robots enabling you to control a number of things. Including restricting access to your sites and redirecting various sections in a controlled way. It is also used to re-write urls.
 
Personally I use mine to setup my 404 redirects, and also to remove the extension from website urks :) it has many purposes
 
Its a simple text file at the root with that name without any extension. Not need but helpful for various commands.
 
Back
Top