如何在 Mongrel 上配置 Wordpress 和 Rails 应用程序阿帕奇服务器?
我需要将一个 WordPress 博客站点添加到同一服务器(在同一域名下),但位于“/blog”路径。即:
我的 Rails 应用程序位于 mysite.com, 我想要博客网站 mysite.com/blog。
我尝试将所有 WordPress 文件放在我的 Rails 应用程序 /public/blog 文件夹下。但每当我访问 mysite.com/blog 时,都会收到错误消息“您正在查找的页面不存在”。
不过,我仍然可以访问 mysite.com/blog/wp-admin/index.php,所以看起来它可以很好地运行 PHP 脚本。
我的 Rails 应用程序在 mongrel+apache2 配置上运行。
知道如何让博客与这个 Rails 应用程序一起使用吗?
谢谢。
I need to add a wordpress blog site to the same server (under the same domain name), but at "/blog" path. That is:
My rails app is at mysite.com,
I want the blog site at mysite.com/blog.
I tried putting all wordpress files under my rails app /public/blog folder. But whenever I access mysite.com/blog, I got error saying "The page you were looking for doesn't exist."
However, I can still access mysite.com/blog/wp-admin/index.php, so it seems that it can run PHP scripts just fine.
My rails app is running on a mongrel+apache2 configuration.
Any idea how I can make the blog work with this rails app?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己想出来了。如果有人遇到类似问题,请查看 http://harryche2008.wordpress.com/2011/03/05/how-setup-wordpress-blog-under-railss-public-directory/
I figured it out myself. if anyone having similar problems, please check the solution at http://harryche2008.wordpress.com/2011/03/05/how-setup-wordpress-blog-under-railss-public-directory/