很抱歉,如果重复的话,但是我似乎找不到答案。
我刚刚安装了XAMPP 5.6.32(旧版本,因为我需要旧版本的php),我需要将文件直接放在根目录中而不是子文件夹中。 IOW,我需要我的网站可以在
下运行http://localhost/index.php
但是无论我做什么,它都会重定向到
http://localhost/dashboard/
我的index.php是一个简单的
echo 'hello world'
,并且httpdocs目录中没有htaccess文件(我已从其中删除了所有内容)。
我尝试同时更改httpd.conf和extra / httpd-vhosts.conf中的DocumentRoot和目录,但似乎没有什么不同。我也将httpd.conf更改为:
<Directory />
AllowOverride all
Require all granted
</Directory>
任何人都可以帮助我并告诉我如何配置xampp,以便我可以从htdocs(或单独的文件夹,只要URL为localhost / index.php即可运行index.php文件?TIA