是否有人有同时运行 Drupal 和 Wordpress 站点并将某些链接从 Drupal 重定向到 Wordpress 的经验

发布于 2024-08-29 07:35:54 字数 279 浏览 4 评论 0原文

这是一个非常奇怪的问题,我深表歉意:

有人问我是否可以不将我们的博客从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅紫色的梦幻 2024-09-05 07:35:54

这看起来应该很简单。我计划利用 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.

话少情深 2024-09-05 07:35:54

我在 Drupal 站点上使用 mod_rewrite。以下是我在用户访问 earldouglas.com 时将用户重定向到 www.earldouglas.com 的示例:

RewriteCond %{HTTP_HOST} ^earldouglas.com [NC]
RewriteRule ^(.*)$ http://www.earldouglas.com/$1 [L,R=301]

您可以尝试如下操作:

RewriteCond %{REQUEST_URI} /blog
RewriteRule ^(.*)$ /wordpress [L,QSA]

I use mod_rewrite on my Drupal site. Here's an example I use to redirect users to www.earldouglas.com when they access earldouglas.com:

RewriteCond %{HTTP_HOST} ^earldouglas.com [NC]
RewriteRule ^(.*)$ http://www.earldouglas.com/$1 [L,R=301]

You could try something like the following:

RewriteCond %{REQUEST_URI} /blog
RewriteRule ^(.*)$ /wordpress [L,QSA]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文