我遇到了wordpress
的问题。
我将wordpress 4.5.3
与插件json-api 1.1.1
一起使用,我在wordpress
上安装了ubuntu 16.04
,我使用了apache2
和php7
。
当我在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>
我不知道什么是问题?希望每个人都可以为我解释,为什么它不起作用?