如何向 drupal mod_rewrite 添加另一个通配符变量?

发布于 2024-11-04 19:37:49 字数 689 浏览 0 评论 0原文

您好,我有一个 Drupal 网站,目前有一些像这样的 URL...

http:// /www.example.com/exhibitions/2011/artist?p=works

我打开了 Drupal 的干净 URL 来创建此 URL。末尾的“p”$_GET 变量来自我的节点模板,用于显示节点中的不同字段。

我想使用 mod_rewrite 将网址更改为:

http://www.example。 com/exhibitions/2011/artist/works

但是我不确定如何使其适应 Drupal 当前的 RewriteRules...

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

感谢您的帮助!

Hello I have a Drupal site that currently has some URL's like this...

http://www.example.com/exhibitions/2011/artist?p=works

I have Drupal's clean URL's turned on to create this url. The 'p' $_GET variable at the end is coming from my node template, which is used to show different fields from the node.

I would like to use mod_rewrite to change the url to this:

http://www.example.com/exhibitions/2011/artist/works

However im not sure how to adapt this to Drupal's current RewriteRules...

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

Thanks for any help!

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

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

发布评论

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

评论(1

┈┾☆殇 2024-11-11 19:37:49

将此规则附加到 .htaccess 文件末尾:

RewriteRule ^(exhibitions/[^/]+/[^/]+)/(.*)$ /$1?p=$2 [L,NC,NE,QSA]

Append this rule at the end of your .htaccess file:

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