我搜查了很多,但我似乎無法找到答案。我在我的VPS上設置了一個Wordpress網站,但Wordpress加載不正確。我只是在網站的主頁上得到這個:WordPress的不是從網絡瀏覽器安裝
<?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');
任何想法可能是什麼問題在這裏?我發現它可能與文件權限有關,但我找不到問題。
(很抱歉,如果這是一個noob問題)
這是index.php文件。意味着你的服務器沒有運行/執行PHP –
如上所述。你是說上面的代碼實際上是在Web瀏覽器中顯示的嗎?如果是這樣,那麼您的Web服務器上沒有啓用PHP。 – Lee