james
james

Reputation: 717

how can I get better url's from drupal views taxonomy filtered pages

I have a Drupal view with a page display that's using dynamic filtering based on taxonomy terms. Pretty straight forward but I'd like to be able to change the url's that are generated from [page path]/[term name] to something more user friendly. I thought I could do this by just substituting the url alias of the taxonomy terms in place of the term name but apparently I can't. How can I accomplish this?

Upvotes: 0

Views: 135

Answers (1)

Daimos
Daimos

Reputation: 1473

Best way is to create links for every taxonomy, and use module that will redirect to your new alias (Path redirect module). Other way is to turn off automatic links for taxonomy (many modules do that), and create your own view with any url. If you use filters in views, you can define param name, so your links can look better.

Upvotes: 0

Related Questions