Created
September 12, 2014 19:52
-
-
Save kneipp/288abd866b593f9592f0 to your computer and use it in GitHub Desktop.
httpd.conf - htaccess settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This should be changed to whatever you set DocumentRoot to. | |
# | |
<Directory "/Library/WebServer/Documents"> | |
# | |
# Possible values for the Options directive are "None", "All", | |
# or any combination of: | |
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews | |
# | |
# Note that "MultiViews" must be named *explicitly* --- "Options All" | |
# doesn't give it to you. | |
# | |
# The Options directive is both complicated and important. Please see | |
# http://httpd.apache.org/docs/2.2/mod/core.html#options | |
# for more information. | |
# | |
Options Indexes FollowSymLinks MultiViews | |
# | |
# AllowOverride controls what directives may be placed in .htaccess files. | |
# It can be "All", "None", or any combination of the keywords: | |
# Options FileInfo AuthConfig Limit | |
# | |
AllowOverride None | |
# | |
# Controls who can get stuff from this server. | |
# | |
Order allow,deny | |
Allow from all | |
</Directory> | |
<Directory /Users/kneipp/projects> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment