How to convert plus (+) sign to “=+” with htaccess?
问题 I want to convert every url which contains "+" to "=+" for example that url: http://www.bedavaemlaksitesi.com/mersinemlakrehberi210/index3.php?+ should be like this: http://www.bedavaemlaksitesi.com/mersinemlakrehberi210/index3.php?=+ tried that and few other lines but doesn't work so far, i'm guessing it causes a loop or something. RewriteRule ^([^/\.]+)+([^/\.]+)?$ $1=+$2 [R] 回答1: I'm just gonna give you a literal answer for that specific example. Not sure if that will actually help you: