第一步:修改 xampp\apache\conf\httpd.conf
找到
<Directory />
AllowOverride none
Require all denied
</Directory>
修改为:
<Directory />
# AllowOverride none
# Require all denied
Order allow,deny
Allow from all
</Directory>
第二步:修改 xampp\apache\conf\extra\httpd-vhosts.conf
最后面增加
Alias /test/ "D:/projects/php/test/"
<Directory "D:/projects/php/test/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
D:/projects/php/test/ 是我项目的路径。
注意 : 第一步 修改httpd.conf 必须要做,否则会出现403错误。
时间: 2024-10-13 04:02:46