在Magento-Wordpress集成中添加JSON插件

时间:2014-04-29 13:15:25

标签: php json wordpress api magento

我正在使用Magento WordPress Integration module整合Wordpress和Magento,它运行正常。

但我需要使用外部API从博客中获取数据。我安装了JSON API plugin,但它与最新版本的Wordpress无法正常工作。

之后我安装了另一个名为Termal API的JSON插件,我无法使其工作,因为当我尝试访问API网址时:

  

http://www.example.com/blog/wp_api/v1/posts

Magento重定向到404找不到的页面。

如何访问API网址?您是否知道提供RESTFUL API的任何其他插件?

1 个答案:

答案 0 :(得分:0)

我自己解决了这个问题。如果其他人遇到同样的问题,我会解释我的所作所为。

您需要在worpdress文件夹中创建或编辑htaccess文件,并将下一个内容放入其中

# BEGIN WordPress

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

之后,JSON插件应该可以正常工作。

谢谢你们