hi, simple question, my url is
www.site.com/page--3
I need the rewriterule to read "/page--3" as two different values.
I have this working: RewriteRule ^/?([a-zA-Z0-9-]+)/([a-zA-Z0-9-]+)$ index.php?page=$1&subpage=$2
This gives me the values 'page' and '3' from www.site.com/page/3.
how do i get the rewriterule to read the '--' as a seperator for the values so that i can read the page and number values? Simply changing the / to -- does not work, does it need to be in some reg expression or escape value?
Any help appreciated