Hi,
I have a webserver which multiple CNAMES bouncing threw.
I have this rewrite setup:
RewriteEngine On
# Support DEV
RewriteCond %{HTTP_HOST} ^support-dev [NC]
RewriteRule ^/(.*) http:/www-dev.domain.com/it/searchsc.shtml?q=$1 [R,NC]
Currently if someone types in:
http:/support-dev/microsoft outlook redirects to: http:/www-dev.domain.com/it/searchsc.shtml?q=microsoft%20outlook
I would like to remove the SPACES so:
http:/support-dev/microsoft outlook redirects to: http:/www-dev.domain.com/it/searchsc.shtml?q=microsoftoutlook
Any idea how I can do this?
Thanks!