View Single Post
Old 02-12-2008, 06:35 PM   #3 (permalink)
SOCK
The Acquainted
 
Join Date: Nov 2007
Posts: 154
Thanks: 31
SOCK is on a distinguished road
Default

A bit late, but
Code:
RewriteEngine on
RewriteBase /
RewriteRule ^([a-zA-Z0-9]+)$ bin/index.php?page=$1 [NC,L]
Does that help? You might consider using a specific set of pages to choose from, e.g. 'main','calendar','forum', etc and have the rules set to
Code:
RewriteRule ^(main|calendar|forum){1}$ bin/index.php?page=$1 [NC,L]
__________________
I reject your reality, and substitute my own.
SOCK is offline  
Reply With Quote
The Following 2 Users Say Thank You to SOCK For This Useful Post:
Aaron (02-14-2008), ETbyrne (02-12-2008)