当我尝试访问我尝试使用WAMP在我的电脑上托管的网站时,我得到了禁止的典型错误代码403。我已经编辑了apache配置以允许所有等但仍然似乎得到它,但我可以看到来自127.0.0.1的localhost和phpadmin 还有其他建议吗?我可以附加我的apache配置或在需要时将其放入pastebin中
参考我使用WAMP Server 3.0.6(64x)运行Win10(64x)
我已经关注了来自youtube和stackoverflow的多个教程,但似乎无法让它工作,因为大多数使用的命令来自linux,例如'chmd'(我之前使用过linux,因此了解这意味着什么,但是无法解决如何通过Windows做同样的事情)
答案 0 :(得分:0)
尝试制作虚拟主机并授予所有本地用户访问权限。确保您提供
的访问权限file -------> httpd.conf
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
#onlineoffline tag - don't remove
Require local
Require ip 192.168.0
</Directory>
编辑httpd-vhosts.conf如:
file ------> httpd-vhosts.conf
# Virtual Hosts
<VirtualHost *:80>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName smarthome
DocumentRoot "c:/wamp64/www/smarthome"
<Directory "c:/wamp64/www/smarthome/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>