mod_rewrite 重定向包含 drupal 的站点
我是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
Try