我正在尝试使用composer在本地主机上安装WordPress。当我转到localhost时,我被重定向到localhost/wp-admin/setup-config。php。我没有得到安装,而是得到了请求的URL/wp admin/setup config错误。在此服务器上找不到php。当我转到localhost/wordpress/wp-admin/setup-config时。php它能工作吗?我做错了什么?
这是我的目录树:
-- .git
-- .gitignore
-- composer.json
-- composer.lock
-- vendor
-- htdocs
----- index.php
----- wp-content
----- wordpress
----- wp-config
在
htdocs/index.php
我有这个
define(\'WP_USE_THEMES\', true);
require( dirname ( __FILE__ ) . \'/wordpress/wp-blog-header.php\' );
在我的
htdocs/wp-config
我编辑了以下内容:
define(\'WP_SITEURL\', \'http://\' . $_SERVER[\'SERVER_NAME\'] . \'/wordpress\');
define(\'WP_HOME\', \'http://\' . $_SERVER[\'SERVER_NAME\']);
define(\'WP_CONTENT_DIR\', dirname(__FILE__) . \'/wp-content\');
define(\'WP_CONTENT_URL\', \'http://\' . $_SERVER[\'SERVER_NAME\'] . \'/wp-content\');