How can i change the url plus(+) sign to dash(-) in url with htaccess. This is the code i have so far:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /(#[^?&\ ]*)?\?([^&\ ]*&)?s=([^&\ ]+)[^\ ]*\ HTTP/
RewriteRule ^$ http://example.com/search/%3\.html? [R=301,L]
</IfModule>
This works well and the result something like this: http://example.com/search/key+word.html
The only thing is that i want to change plus with dash. I would really appreciated if anyone can help out.