views:

37

answers:

1

Is it possible to remove all instances of the "=" sign and replace it with the "/" sign. Using htaccess?

+1  A: 

Try these rules:

RewriteRule ^([^=]*)=([^=]*)=(.*) /$1/$2/$3 [N]
RewriteRule ^([^=]*)=([^=]*)$ $1/$2 [L]
Gumbo