将参数添加到 drupal 内容页面

Add parameter to drupal content page

我有特定视图的 drupal 内容页面 url

?q=content/74055

我希望我的 url 成为

?q=content/74055&type=nip

如何添加 type=nip 参数

在重写规则中试试这个

RewriteRule ^/?q=content/([0-9]+) /?q=content/$1&nip=1

您可以通过以下步骤完成

登录到您的 drupal 管理面板并转到编辑视图选项

  1. 添加新字段内容:路径
  2. 取消选中 "Create a label" 选项
  3. 检查 "Exclude from display" 选项
  4. 现在编辑要添加的字段名称link
  5. 选择 "LINK IMAGE TO" 选项作为 "Nothing"
  6. 现在在 "Rewrite results" 部分检查 "Output this field as a link" 选项
  7. 在 Link 路径输入字段中粘贴“[path]&type=nip”。

这条规则适合你

RewriteRule ^/?q=content/([0-9]+) /?q=content/&nip=1