Forum Moderators: phranque
example.com/news
example.com/index.php?page=news
example.com/news?id=34
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([^/\.]+)/?$ /index.php?page=$1 [L]
# internally rewrite requests for URL-path "/xyz" with empty query string to filepath /index.php?page=xyz
RewriteCond %{QUERY_STRING} =""
RewriteRule ^([^/.]+)$ /index.php?page=$1 [L]
#
# internally rewrite other requests for URL-path "/xyz" with a non-empty query string to filepath /index.php?<existing-query-string>&id=xyz
RewriteRule ^([^/.]+)$ /index.php?id=$1 [QSA,L]