I have a question.
I have a regular site that i want custom urls to point to these pages when user come to the site.
index.html - custom_index.cfm?custom_id=1&page_id=1&inc=index
about.html - custom_index.cfm?custom_id=5&page_id=5&inc=about
contactus.html - custom_contactus.cfm?custom_id=3&page_id=3&inc=contactus
How can i approach that?
Will something like this work?
if (window.location.search.match(/(\?|&)custom_index.cfm?custom_id=3&page_id=3&inc=contactus($|&)/)) {
Load page
}