“大家好。我在本地服务器上安装WordPress时遇到问题。问题是什么?让我详细解释一下。首先,我安装了LAMP(
sudo pacman -S apache php php-apache
)。然后,我启动并启用了Apache和MariaDB
sudo systemctl start httpd
sudo systemctl enable httpd
sudo systemctl start mariadb
sudo systemctl enable mariadb
之后,我通过运行设置向导 (
sudo mysql_secure_installation
) 配置了 MariaDB。之后,我访问了 http://localhost 并且一切正常。接下来,我创建了一个新数据库和一个新用户。然后,我下载了 WordPress,解压缩存档,然后转到 WordPress 目录。我按照手册(sudo cp wp-config-sample.php wp-config.php
)复制了配置文件并进行了编辑(将数据库名称更改为之前创建的数据库名称,更改了用户名和密码)。当我打开 https://localhost/wordpress 时,我没有看到初始的 WordPress 设置页面。相反,我只看到了 WordPress 目录的文件目录列表(/wordpress 的索引)。我做错了什么,如何在本地服务器上访问我的 WordPress?”