Skip to content

Instantly share code, notes, and snippets.

@amyunus
Created October 8, 2012 03:27
Show Gist options
  • Save amyunus/3850573 to your computer and use it in GitHub Desktop.
Save amyunus/3850573 to your computer and use it in GitHub Desktop.
.htaccess is not working?
#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