解决wamp 3.0.6 访问路径出现 403 错误

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot e:/wamp64/www #your local dir path
    <Directory  "${INSTALL_DIR}/www/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

在 httpd.conf 中添加上述代码,

原文地址:https://www.cnblogs.com/tommy-huang/p/9094962.html