# This detects the section of my site someone's going to... RewriteRule ^(news|media|whatever)(/)?$ index.php?section=$1 # This detects if someone's trying to look at a sub-page of my news section RewriteRule ^news/page/([a-z0-9]*)$ index.php?section=news&page=$1 # This detects /news/entry/123 -- or with an optional SEO friendly slug, i.e. /news/entry/123/this-is-a-slug RewriteRule ^news/entry/([0-9]+)(/([\w\-]*))?$ index.php?section=news&entry=$1
You are not logged in, either login or create an account to post comments
posted by usonian at 12:57 PM on October 16 [1 favorite]