02-12-2008, 06:35 PM
|
#3 (permalink)
|
|
The Acquainted
Join Date: Nov 2007
Posts: 154
Thanks: 31
|
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.
|
|
|
|