15-11-2008

mod_rewrite Catch 2 params and leave static files alone

blaba

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(.*)/$	index.php?category=$1 [NC,L]	
RewriteRule ^(.*)/(.*)$ index.php?category=$1&action=$2 [NC,L]
RewriteRule ^(.*)/(.*)/$ index.php?category=$1&action=$2 [NC,L]
 

Comments:

Your comment:

»
wobll 14/10/2009, 9:40 am
HANDY

 

[x]