海关URL /深层链接

时间:2012-02-16 18:21:33

标签: javascript jquery html deep-linking

我有一个问题。

我有一个常规网站,当用户访问网站时,我希望自定义网址指向这些网页。

的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

我该如何处理?

这样的事情会起作用吗?

  if (window.location.search.match(/(\?|&)custom_index.cfm?custom_id=3&page_id=3&inc=contactus($|&)/)) {
Load page
}

1 个答案:

答案 0 :(得分:0)

Apache mod_rewrite应该可以在这里为您提供帮助 - 请查看this article,这样可以帮您解决问题。

祝你好运!