I have a simple view with 2 arguments: taxonomy term and node type. That's all.
The preview is ok, but when I try the url I get "page not found".
The view export code is attached.
Please let me know if you need more info.
I had to define a path instead one of the arguments (I can't use %/%. because first segment of a path can't be %).
I will have to create more views, but at least this way it works.
Comments
Comment #1
Ehud commentedI had to define a path instead one of the arguments (I can't use %/%. because first segment of a path can't be %).
I will have to create more views, but at least this way it works.
Comment #2
merlinofchaos commentedThat's right. The Drupal menu system does not support % as the first part of an argument. There's nothing Views can do about this.
Comment #3
gg4 commentedJust curious, why is that?
Comment #4
merlinofchaos commentedThe only thing I can think of is using custom_url_rewrite() hook to do it, but it may be a performance bottleneck to do so.
Comment #5
scott_earnest commentedDuplicate of #370868: "%" may not be used for the first segment of a path.