How to replace all equal signs with forward slashes using htaccess
Is it possible to remove all instances of the "=" sign and replace it with the "/" sign. Using htaccess?开发者_Python百科
Try these rules:
RewriteRule ^([^=]*)=([^=]*)=(.*) /$1/$2/$3 [N]
RewriteRule ^([^=]*)=([^=]*)$ $1/$2 [L]
精彩评论