0

我有个问题。

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

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
}
4

1 回答 1

0

Apachemod_rewrite应该在这里为您提供帮助 - 查看这篇文章,它应该可以帮助您。

祝你好运!

于 2012-02-16T18:25:10.813 回答