URL problem

2010-07-19 Thread Stephan Huiser
Hi, i have a strange problem with urls. Project name: erp Application name: blog (and some more) problem occurs with certain view of blog-application This URL works fine: http://erp/blog/ When I use the URL below, I get an 404-error. http://erp/blog/2010/jul/11/1ste-blog-post/ -

Re: URL problem

2010-07-19 Thread Stephan Huiser
Many thanks, that did the trick! On 07/19/2010 03:44 PM, Tim Sawyer wrote: I think the problem is your regular expression: ^(?P\d{4})/(?P[a-z]{3})/(?P\w{1,2})/(?P\w+)/$ This says - four digits for a year (2010 - ok) - slash - three letters from a-z for month (jul - ok) - slash - one or two let