APACHE supports .htaccess method

  
                  

How to make your local APACHE server support ".htaccess"? In fact, simply modify Apache's httpd.conf settings to allow APACHE to support .htaccess, take a look at the operation

Open httpd The .conf file (where in the CONF directory of the APACHE directory), open with a text editor, look for

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

Change to

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

Just fine

Copyright © Windows knowledge All Rights Reserved