wampserver apache 403無權限訪問 You don't have permission to access /index.html on this server

今天接到要求 須要配置一下https 折騰很久 最後好還遇到了權限不夠的問題 最後解決方案以下apache

我這邊補充一下個人方法 個人apache是 2.4.23 版本 是由 wampserver集成的

httpd.conf 裏面找到
<Directory />
AllowOverride none
Require all denied
</Directory>

修改爲下面這樣就行了

<Directory />
AllowOverride none
Require all granted
</Directory>

再者 httpd-vhosts.conf裏面修改爲以下
# Virtual Hosts
#

<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot c:/wamp/www
<Directory "c:/wamp/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
#

//說得對 惋惜不能生孩子 (笑
ide

相關文章
相關標籤/搜索