我在Windows 7笔记本电脑上设置了MAMP,并将localhost设置为htdocs文件夹。 在我在此文件中命名数据库,用户名和密码后,我创建了一个数据库并将wp-config_sample.php重命名为wp-config。
打开了appache服务器和MYSQL服务器。 在Chrome浏览器中,如果我输入localhost /,则会显示以下内容:
index of/
test.php
但是htdocs中名为testsite的wordpress文件夹不可见 在浏览器中,如果我键入localhost / MAMP /,则正确显示MAMP页面。 如果我输入localhost:3306 / testsite,则会显示以下内容:
This page isn’t working
localhost sent an invalid response.
ERR_INVALID_HTTP_RESPONSE
MySQL端口已更改为3306,这是免费的
如果我输入localhost / testsite,则会显示以下内容:
Forbidden
You don't have permission to access /testsite/ on this server.
请让我知道我需要在这篇文章中提供哪些其他信息。感谢
答案 0 :(得分:0)
您需要设置文件夹权限才能在localhost中查看文件夹
运行命令chmod *** /folder
以更改权限
@updated:
然后你应该尝试在Mamp
中的主机file.conf中添加这样的行Alias /mytest/ "C:/mytest/"
<Directory "C:/mytest/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
Allow from all
Require local
</Directory>