How to make your local APACHE server support ".htaccess"? In fact, you can make APACHE support .htaccess by simply modifying apache's httpd.conf settings. Let's take a look at the operation.
Open the httpd.conf file (where is it? In the CONF directory of the APACHE directory), open it with a text editor and search for
Options FollowSymLinks AllowOverride None
changed to
Options FollowSymLinks AllowOverride All
That’s it
http://www.bkjia.com/PHPjc/371946.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/371946.htmlTechArticleHow to make your local APACHE server support .htaccess? In fact, just simply modify the httpd.conf setting of apache. APACHE can be made to support .htaccess. Let’s see how to open httpd.co...