After hours in Google, I can't find a step-by-step for friendly URLs with Coldfusion in shared hosting environment with no access to IIS and application.cfm (rather than .cfc).
[Scenario 1: What I have]
www.testsite.com/article.cfm?id=32 - article.cfm looks up article by id and returns full results
What I need to change this to:
www.testsite.com/blog/article-title
I must have this format because I am moving a wordpress site to coldfusion and there are hundreds of blog posts with this format (WordPress and PHP must have done the url rewrite?). I have to retain these URLs for the site.
Question 1: I don't have access to IIS admin to create the rules for IIS Rewrite (it IS turned on), I must hard-code them in the web.config.
Question 2: Do I have to create a "blog" folder?
[Scenario 1: What I have]
www.testsite.com/team.cfm?id=17 - team.cfm looks up member by id and returns full results
What I need to change this to:
www.testsite.com/team/person-name
I guess this is similar to the first scenario.
Please help. I'm not a newbie to Coldfusion but I am a COMPLETE newbie to SEO friendly URLs.