Apache AllowOverride options: Difference between revisions

From Edgar BV Wiki
Jump to navigation Jump to search
New page: Apache can allow overrides to website behavior in the <Directory /some/site/> AllowOverride AuthConfig FileInfo Options </Directory> Sections. AuthConfig enables .htpasswd FileInfo e...
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:


<Directory /some/site/>
<Directory /some/site/>
   AllowOverride AuthConfig FileInfo Options
   AllowOverride AuthConfig FileInfo Options Limit
</Directory>
</Directory>


Sections.
Sections.


AuthConfig enables .htpasswd
 
FileInfo enables mod_rewrite
AuthConfig enables .htpasswd / .htaccess
 
FileInfo enables mod_rewrite (allows to rewrite URLs)
 
Options allows you to change other stuff
Options allows you to change other stuff
Limit

Latest revision as of 16:50, 6 February 2008

Apache can allow overrides to website behavior in the

<Directory /some/site/>

 AllowOverride AuthConfig FileInfo Options Limit

</Directory>

Sections.


AuthConfig enables .htpasswd / .htaccess

FileInfo enables mod_rewrite (allows to rewrite URLs)

Options allows you to change other stuff

Limit