chrissparkle
Programmer
I have a url which looks like this: /f-search_results.cfm?type=online?page=1. I've been able to write a rewrite rule for it:
RewriteRule /search/singles-(.*)\.htm /f-search_results.cfm\?type=$1 [I,O]
this works for "type=online" part of it, but how do i modify the rule so that the "page=1" can be included in the rule?
Ideally I'd like the rewritten rule to look like:
/search/singles-online-1.htm - the 1 being the page number.
Can someone help me out there please..
RewriteRule /search/singles-(.*)\.htm /f-search_results.cfm\?type=$1 [I,O]
this works for "type=online" part of it, but how do i modify the rule so that the "page=1" can be included in the rule?
Ideally I'd like the rewritten rule to look like:
/search/singles-online-1.htm - the 1 being the page number.
Can someone help me out there please..