开发者

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]
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜