JSON_API不会在wordpress上返回数据

时间:2016-07-26 11:25:42

标签: php json wordpress json-api wordpress-json-api

我遇到了wordpress的问题。

我将wordpress 4.5.3与插件json-api 1.1.1一起使用,我在wordpress上安装了ubuntu 16.04,我使用了apache2php7

当我在json-api上安装并激活插件wordpress时。当我点击链接get_recent_posts时,它返回了

The requested URL /api/get_recent_posts/ was not found on this server.
Apache/2.4.18 (Ubuntu) Server at 172.16.1.38 Port 80

这是文件配置虚拟主机:

<VirtualHost *:80>
  #ServerName www.example.com
  ServerAdmin webmaster@localhost
  DocumentRoot /var/www/wordpress

  <Directory />
    Options FollowSymLinks
    AllowOverride None
  </Directory>
  <Directory /var/www/wordpress>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all
  </Directory>
  ErrorLog ${APACHE_LOG_DIR}/error.log
  CustomLog ${APACHE_LOG_DIR}/access.log combined
  #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

我不知道什么是问题?希望每个人都可以为我解释,为什么它不起作用?

0 个答案:

没有答案