是否有人有同时运行 Drupal 和 Wordpress 站点并将某些链接从 Drupal 重定向到 Wordpress 的经验
这是一个非常奇怪的问题,我深表歉意:
有人问我是否可以不将我们的博客从 Wordpress 导入到 Drupal,而只是将其作为存档保留在 Wordpress 中并重定向我们的用户说当 URL 与 Wordpress URL 模式匹配时,从 hostname/blog/... 到 hostname/wordpress/...。
我从来没有听说过有人尝试过这个,我想知道其中的陷阱以及它是否可能。
谢谢!
D
This is a really weird question and I apologize:
I've been asked if it's possible not to import our blog from Wordpress to Drupal but just keep it in Wordpress as an archive and re-direct our users say from hostname/blog/... to hostname/wordpress/... when a URL matches the Wordpress URL pattern.
I've never heard of anyone trying this and I'm wondering about pitfalls and whether or not it's even possible.
Thanks!
D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这看起来应该很简单。我计划利用 apache 的 mod_rewrite 模块:
我们将只需要配置一个.htaccess文件来重定向匹配主机名/博客/模式/的URL - 其中模式适合WordPress URL 博客模式。
This looks like it should be pretty simple to do. I plan to take advantage of the mod_rewrite module for apache:
We will just need to configure a .htaccess file to redirect URLs matching hostname/blog/pattern/ - where pattern fits a Wordpress URL blog pattern.
我在 Drupal 站点上使用 mod_rewrite。以下是我在用户访问
earldouglas.com
时将用户重定向到www.earldouglas.com
的示例:您可以尝试如下操作:
I use mod_rewrite on my Drupal site. Here's an example I use to redirect users to
www.earldouglas.com
when they accessearldouglas.com
:You could try something like the following: