Created
October 8, 2012 03:27
-
-
Save amyunus/3850573 to your computer and use it in GitHub Desktop.
.htaccess is not working?
This file contains hidden or 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
#perhaps your htaccess file is not being read by apache. how could?! | |
#yes, if your httpd.conf show this | |
#<Directory "/var/www/html"> | |
# Options Indexes Includes FollowSymLinks | |
# AllowOverride None | |
# Allow from all | |
# Order allow,deny | |
#</Directory> | |
#Change to this | |
<Directory "/var/www/html"> | |
Options Indexes Includes FollowSymLinks | |
AllowOverride All | |
Allow from all | |
Order allow,deny | |
</Directory> | |
#See the difference? Good luck! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment