我想让WordPress运行在一个简单的数字海洋Ubuntu上。我在运行Apache,它提供基本的index.html
文件很好,从我的/var/www/html
目录当我从https://wordpress.org/latest.zip
并将内容放在html
目录,它只是提供PHP代码,而不是运行它。
<?php
/**
* Front to the WordPress application. This file doesn\'t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(\'WP_USE_THEMES\', true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . \'/wp-blog-header.php\' );
我也有一个MySQL服务器运行在这一小滴上
wp-config.php
我的
/Sites
目录(与本地工作的WordPress配置相同)。我已经
sudo apt-get install
ed mysql、php和apache2。
如果这是针对主机的,我很抱歉,但我觉得这可能是对如何让WordPress在Ubuntu上运行Apache的基本误解,而不是与数字海洋相关的任何内容。似乎我只是忘了下载一些软件包。