wordpress博客在magento根文件夹的子目录中

时间:2014-05-14 14:30:20

标签: php wordpress magento nginx

我在http://example.com有一个Magento网站,我希望在http://example.com/blog保留一个Wordpress博客。我已经安装了博客,一切似乎都很好,但是当我登录到Wp-Admin时,我获得了404 css和js文件。

我的配置如下链接: -

https://serverfault.com/questions/594841/magento-wordpress-nginx-configuration

1 个答案:

答案 0 :(得分:1)

您是否正确设置了网站/主页网址?

同样在wp-config.php中,请务必将WP_HOMEWP_SITEURL变量设置为您正在使用的正确网址(子目录)

它应该是这样的:

$host = 'http://' . $_SERVER['HTTP_HOST'] . '/blog/';
define('WP_HOME',$host);
define('WP_SITEURL',$host);
相关问题