如何同时使用 WordPress 和 Django
我在 Dreamhost 上托管我的 Django 网站 Wantbox.com。我想使用 Wordpress 来创建 Wantbox 博客,并在此处找到它:http://wantbox.com/blog/
我如何配置 Django 来取消“/blog/”,以便 Wordpress 可以完成它的工作?现在,我有一个包罗万象的 url 模式,它将任何未指定的内容发送到主页,并且这个包罗万象的内容是捕获“/blog/”并执行此操作。
感谢您的帮助!
更新: Django 数据不一定可以通过 Wordpress 访问,反之亦然。另外,如果基于 Django 的博客解决方案与我非常熟悉的久经考验的 Wordpress 一样有效,我愿意接受。
I host my Django site Wantbox.com on Dreamhost. I'd like to use Wordpress for the Wantbox blog and locate it here: http://wantbox.com/blog/
How do I configure Django to lay off "/blog/" so Wordpress can do it's thing? Right now, I have a catch-all url pattern which sends anything not specified to the homepage and this catch-all is catching "/blog/" and doing just that.
Thanks for your help!
UPDATE:
It's not necessary for Django data to be accessible by Wordpress or vica-versa. Also, I'm open to a Django-based blog solution, if it works as well as the tried-and-true Wordpress that I'm quite familiar with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过Google发现了一个类似的问题这里。答案是在新博客文件夹的根目录中创建一个 .htaccess 文件。就我而言,博客根目录位于:~/wantbox.com/public/blog/
此目录中的我的 .htaccess 文件有一行:
现在的 url 模式 http://wantbox.com/blog/ 被 Django 忽略并由 Wordpress 处理。很不错。
I found via Google a similar SO question here. The answer is to create an .htaccess file in the root of your new blog folder. In my case, the blog root directory is here: ~/wantbox.com/public/blog/
My .htaccess file in this directory has one line:
Now the url pattern http://wantbox.com/blog/ is ignored by Django and handled by Wordpress. Very nice.