Hi there. I'm contemplating converting my site to Drupal, but I'm not sure of the best means to do so, or if it's even feasible.
Right now I have three main content types on my site: reviews, articles, and podcasts. The URLs for each type are set up like this:
/reviews/123/
/articles/45/
podcast/6/
Additionally, I link up these content types to particular movies, which are accessible in a similar format:
/movies/789/
I know I could just create separate node types for these, but my problem is this... The id #'s of the different content types are overlapping... In other words, there is a review #100, a movie #100, and an article #100. So I don't see an easy way to preserve old links & old numbers when converting. I see a few options:
1) Convert all content to node types. Abandon the old permalinks.
2) Convert all content to node types. Write up a PHP page to translate old ID #'s to new node #'s.
3) Build new tables in the Drupal system. Build a module to use these tables outside of the traditional node system. I imagine this is going to make things difficult for searching and other options.
I'd really like to go with #3, but I'm just not familiar enough with Drupal to know if there's any particularly difficult roadblock in doing so.
How about the Drupal experts here, what would you recommend? Is there perhaps a better solution that I haven't thought of?