如何在React js应用程序中实现WordPress博客?

时间:2018-09-07 09:26:20

标签: php wordpress reactjs

我有一个可正常运行的React应用,该应用通过ProxyPass在Apache虚拟主机mydomain.com上运行。

这是我的VirtualHost配置:

<VirtualHost *:80>
  ServerName mydomain.com
  ServerAlias www.mydomain.com

  ProxyRequests Off
  ProxyPreserveHost On

  ProxyPass / http://localhost:3005/
  ProxyPassReverse / http://localhost:3005/

  # This is needed only if you want to use web sockets
  RewriteEngine On
  RewriteCond %{REQUEST_URI}  ^/socket.io            [NC]
  RewriteCond %{QUERY_STRING} transport=websocket    [NC]
  RewriteRule /(.*)           ws://localhost:3000/$1 [P,L]
</VirtualHost>

现在,我想在子文件夹mydomain.com/blog

中添加Wordpress博客。

我们该怎么做:

  • 在root和
  • 中运行react app
  • 子文件夹中的wordpress吗?

1 个答案:

答案 0 :(得分:0)

您应该看看GatsbyJS。它的目标是在WordPress作为后台/ API的同时使用现代的React前端。