Code: Select all
RewriteRule ^([^images][A-Za-z]*)/(.*)/? index.php?section=$1&id=$2Code: Select all
www.site.com/aSection/anIDCode: Select all
index.php?section=aSection&id=anIDCode: Select all
URL is www.site.com/aSection/anID/In my regex the / isn't inside the parentheses so I don't understand why it's being saved as part of backreference $2.
Any ideas?