I am in the process of migrating a WordPress blog to Drupal 7. Thus far, I have migrated to Drupal 6 and now upgraded to Drupal 7 (alpha 5).
I really like the Drupal 7 Administration interface which is the main rationale for the move and most of the D7 modules I need are available or coming with the final release.
The only outstanding issue I have concerns my WP permalink structure which is of the form: '/yyyy/mm/dd/title'
In Drupal 6, it was easy to set up automatic URL aliases using the pattern: [yyyy]/[mm]/[dd]/title-raw.
However, this functionality no longer appears to be available directly in Drupal 7.
The closest I have got so far is to configure the following custom format (using PHP DATE) from 'Configuration-URL Aliases-Patterns':
Using [node:created:custom:'Y/m/d']/[node:title]' but that produces an alias of 'yyyymmdd/title'.
It appears that something (pathauto, token module ?) is removing the slash characters from the aliased URL.
Is there any way I can prevent this happening ?
The setting 'Reduce strings to letters and numbers' is not checked.
'Strings to remove' is the default list of words and doesn't include the '/' character.
The 'Punctuation' page doesn't include the slash '/' character and in any case, you normally do want the slash to be eliminated from a post slug.