Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know what is .htaccess file? What is the hack behind this file? Why it is included in html5boilerplate? Is this work in IIS?

share|improve this question
1  
First result on Google: httpd.apache.org/docs/2.2/howto/htaccess.html – Aurelio De Rosa Feb 16 '12 at 10:32
9  
You could have read the html5boilerplate documentation about it... – Didier Ghys Feb 16 '12 at 10:33
@AurelioDeRosa, Why it is included in html5boilerplate? – user960567 Feb 16 '12 at 10:33
1  
Why Negative voting? Is these types of question did not makes sense? – user960567 Feb 16 '12 at 10:36
1  
They just llike to express that they have voting rights! – Jawad Feb 16 '12 at 10:40
show 1 more comment

closed as not constructive by Marcin, Aurelio De Rosa, Gaby aka G. Petrioli, thirtydot, Graviton Feb 16 '12 at 12:34

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 2 down vote accepted

See comprehensive overview of it on wikipedia.

A .htaccess (hypertext access) file is a directory-level configuration file supported by several web servers, that allows for decentralized management of web server configuration. The original purpose of .htaccess - reflected in its name - was to allow per-directory access control, by for example requiring a password to access the content. Nowadays however, the .htaccess files can override many other configuration settings including content type and character set, CGI handlers, etc.

share|improve this answer
Is it work in IIS? – user960567 Feb 16 '12 at 10:34

.htcaccess files are like configuration files used with Apache Servers.

share|improve this answer
Is these are work in IIS – user960567 Feb 16 '12 at 10:48
do you mean if they work in IIS? no, for IIS you need the web.config file – Kheu Feb 20 '12 at 9:57

.htaccess file is directory-level configuration file use in Apache server. .htaccess file is use for permission to access your directory in server, Redirect pages, URL rewriting, Block any IP, To display your customize(different html files created by you) error pages if user enter a wrong url etc.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.