mod_rewrite 重定向包含 drupal 的站点

发布于 2024-10-25 23:38:38 字数 806 浏览 1 评论 0原文

我是使用 mod_rewrite 的新手,所以我需要简单的解释。我正在尝试对与 Drupal 安装位于同一目录中但不属于 Drupal 的目录进行重定向。

例如,曾经存在于 http://mysite.com/events/listen/song 的文件。 mp3。我重新排列,使文件现在位于 http://mysite.com/listen/song.mp3

我可以在 mod_rewrite 中使用以下内容并且它可以工作:

RewriteRule ^events/listen/(.+)$ listen/$1 [NC]

但是,我想进行真正的重定向,以便用户看到新的 URL 而不是旧的 URL。我已经尝试过:

RewriteRule ^events/listen/(.+)$ listen/$1 [R,NC]

并且

RewriteRule ^events/listen/(.+)$ http://mysite.com/listen/$1 [R,NC]

这些都不起作用。我认为这可能与 Drupal 正在执行的所有重新路由有关,尽管我在 .htaccess 中的 Drupal 之前确实有重写规则。我有什么明显遗漏的东西吗?或者有没有一种方法可以让它工作而不扰乱 Drupal 正在做的事情?

I am new to using mod_rewrite, so I need an explanation in simple terms. I'm trying to do a redirect for a directory that is in the same directory as a Drupal installation but is not part of Drupal.

For example, a file used to exist at http://mysite.com/events/listen/song.mp3. I rearranged so that the file now resides at http://mysite.com/listen/song.mp3.

I can use the following in mod_rewrite and it works:

RewriteRule ^events/listen/(.+)$ listen/$1 [NC]

However, I'd like to do a real redirect, so that the user sees the new URL instead of the old one. I've tried:

RewriteRule ^events/listen/(.+)$ listen/$1 [R,NC]

and

RewriteRule ^events/listen/(.+)$ http://mysite.com/listen/$1 [R,NC]

Neither of these work. I think it probably has to do with all the rerouting that Drupal is doing, though I do have my rewrite rules before Drupal's in .htaccess. Is there something obvious I'm missing? Or is there a way to allow this to work without messing up what Drupal is doing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一杆小烟枪 2024-11-01 23:38:38

尝试

RewriteRule ^events/listen/(.+)$ listen/$1 [R=301,L]

Try

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