Let your local APACHE server support .htaccess

  

How to make your local APACHE server support ".htaccess"? In fact, simply modify the httpd.conf settings of Apache to enable APACHE to support .htaccess.

Open the httpd.conf file (where it is inside the CONF directory of the APACHE directory), open it with a text editor, and look for

<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
Change to

<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
Yes,

Copyright © Windows knowledge All Rights Reserved