分类法的自定义 url > Drupal 6 中的词汇
我是 Drupal 的新人。一个问题;
我创建了一个酒店目录网站。我为伦敦、利物浦等地点创建了分类法>词汇表...例如,下面的网址列出了伦敦,
localhost/drupal/taxonomy/term/1
如何将该网址更改为类似的内容
localhost/drupal/hotels/london
可能吗?非常感谢建议!
I'm new at Drupal. a question;
I create a hotels directory site. I created Taxonomy>Vocabulary for locations like London, Liverpool, etc... For example the url below lists the London
localhost/drupal/taxonomy/term/1
how can change that url to something like
localhost/drupal/hotels/london
is it possible? appreciate advices so much!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Drupal 核心中启用
path
模块,并从 Drupal 模块网站下载并启用pathauto
模块。您可以使用 pathauto 设置规则来决定如何重写分类页面的路径,并且您当然可以执行类似的操作。我猜测要实现您建议的 URL 别名,重写规则将类似于:
[vocab-raw]/[cat-raw]
假设您的词汇表称为 Hotels,并且术语被称为伦敦。
Enable the
path
module in Drupal core, and download and enable thepathauto
module from the Drupal modules website. You can use pathauto to set rules over how you wish to rewrite the paths of your taxonomy pages, and you can certainly do something like this.I am guessing that to achieve the URL alias you are suggesting, the rewrite rules would look something like:
[vocab-raw]/[cat-raw]
Assuming that your vocabulary is called Hotels, and the term is called London.