01-14-2008, 10:47 AM
|
#2 (permalink)
|
|
The Acquainted
Join Date: Nov 2007
Location: Netherlands
Posts: 113
Thanks: 11
|
Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) - [PT,L]
RewriteRule ^([a-z0-9]+)/([a-z0-9]+).html index.php?act=$1&sub=$2 [QSA,L,NC]
for explanation: mod_rewrite cheat-sheet [PDF]
Last edited by sjaq : 01-14-2008 at 06:49 PM.
Reason: cheat-sheet added
|
|
|
|