I am new to Drupal. I have created a block that I want to show on some specific pages. Like if the url is "/node/2278" then I want to show the block for all the page under this "/node/2278". This may be /node/2278/1 or /node/2278/any-number.
Asked
Active
Viewed 94 times
2 Answers
1
You can use the Followings Path configurations
using (node/2278
) -> the block will display only on node/2278.
using (node/2278/*
) -> the block will display on node/2278/12 where * can be any text or number
using (node/2278/*/*
) -> the block will display only on node/2278/12/45 where * can be any text or number

Sameer
- 101
- 1
- 5
0
Use "/node/2278/*" , I think it actually tells you that the star can be a wildcard under the textfield where you enter it. Don't forget you can set up url aliases so the path does not have to be "node/..." but can be whatever you want (admin/config/search/path/patterns)

2pha
- 9,798
- 2
- 29
- 43
-
How can i use aliases here? cause node/2278 is static url but the rest url changes dynamically – rafat Jul 13 '14 at 04:54